xclusive_after_page

Description

The “xclusive_after_page” action allows to add additional markup after closing the <div id=”page”> tag. Version 1.1.0+.

A plugin (or theme) can add an action with the code:

<?php add_action( 'xclusive_after_page', 'action_function_name' ); ?>

The hook is located in the functions.php file.

Example

// apply action
function action_xclusive_after_page() {
	//run action here
	echo '<footer>footer content</footer>';
}
add_action('xclusive_after_page', 'action_xclusive_after_page');

Leave a Reply

Your email address will not be published. Required fields are marked *