appthemes_before_blog_post

Executes in the loop.php file and runs after have_posts() within the loop whenever any blog post is loaded.

appthemes_before_blog_post();

Example: Advertisment

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

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

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_blog_post', 'sale_annoucement' ); 
?>

Changelog

  • since 1.1

Source File

appthemes_before_blog_post() is located in loop.php.

Your rating: none
Rating: 0 - 0 votes

Popular Add-ons

Fortumo SMS payment gateway

Fortumo sms payment gateway for ClassiPress


(3)
$39

Home Control for Vantage

Widgetized Vantage home page including a grid view for easier control.


(10)
$29

Mapsupreme for Vantage

A plugin that adds additional Google Maps to your Vantage theme.


(28)
$29