appthemes_before_post_content

This action hook executes in the loop-[post_type].php file and loads right before the_content() is run.

appthemes_before_post_content();

Example: Advertisment

This code would display an AppThemes banner advertisement above the content of every page.

<?php
function insert_banner_ad_before_page() { 
    echo '<a href="http://www.appthemes.com"><img src="http://www.appthemes.com/ads/at-468x60a.gif"></a>';
}
add_action( 'appthemes_before_post_content', 'insert_banner_ad_before_page' ); 
?>

Example: Adding an Announcement Bar

You can insert special information for the user about a sale, upcoming event, or other notification here.

<?php
function sale_annoucement() { 
    echo '<div class="annoucement">' . __('Come back July 5th for 10% off everything!', 'appthemes') . '</div>';
}
add_action( 'appthemes_before_post_content', 'sale_annoucement' ); 
?>

Changelog

  • since 1.1

Source File

appthemes_before_post_content() is located in loop-[post_type].php.

Your rating: none
Rating: 0 - 0 votes

Popular Add-ons

AdPoster Blocker

A simple but powerful plugin that blocks spammy new user regs and/or…


(5)
$19

Logic Widgets for Vantage

Quickly and easily add conditional content to your Vantage site including…


(4)
$29

A-Z Business Listing

Inserts an A to Z listing of Business's for Vantage


(5)
$19