Description
The “xclusive_before_page” action allows to add additional markup just before opening <div id=”page”> tag. Version 1.1.0+.
A plugin (or theme) can add an action with the code:
<?php add_action( 'xclusive_before_page', 'action_function_name' ); ?>
The hook is located in the functions.php file.
Example
// apply action
function action_xclusive_before_page() {
//run action here
echo '<h1>Page Title</h1>';
}
add_action('xclusive_before_page', 'action_xclusive_before_page');
Leave a Reply