appthemes_before_page_title

Runs in the page.php file and loads before the page title.

Usage

This hook provides no parameters. You use this hook by having your function echo output to the browser, or by having it perform background tasks. Your functions shouldn’t return, and shouldn’t take any parameters.

add_action( 'appthemes_before_page_title', 'your_function' );

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

Changelog

  • since 1.1

Source File

appthemes_before_page_title() is located in page.php and any other page templates.

Your rating: none
Rating: 0 - 0 votes

Popular Add-ons

CP-Tabber

Show specific custom fields as tabs on an ad detail page.


(3)
$12

Mapsupreme for Vantage

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


(28)
$29

Ads Auto Re-Lister

Set your ClassiPress website to auto pilot mode! ...This plugin will…


(9)
$19