Description
The “xclusive_after_sidebar_content” action allows to add additional markup just before closing tag </div><!–.sidebar-inner–> tag. Version 1.1.0+.
A plugin (or theme) can add an action with the code:
<?php add_action( 'xclusive_after_sidebar_content', 'action_function_name' ); ?>
The hook is located in the functions.php file.
Example
// apply action function action_xclusive_after_sidebar_content() { //run action here echo '<p>text</p>'; } add_action('xclusive_after_sidebar_content', 'action_xclusive_after_sidebar_content');