xclusive_before_footer

Description

The “xclusive_before_footer” action allows to add additional markup just before opening  <footer id=”colophon” > tag. Version 1.1.0+.

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

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

The hook is located in the functions.php file.

Example

// apply action
function action_xclusive_before_footer() {
	//run action here
	echo '<p>text</p>';
}
add_action('xclusive_before_footer', 'action_xclusive_before_footer');

Leave a Reply

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