Description
The “xclusive_before_header” action allows to add additional markup Just before opening <div id=”header”> tag. Version 1.1.0+.
A plugin (or theme) can add an action with the code:
<?php add_action( 'xclusive_before_header', 'action_function_name' ); ?>
The hook is located in the functions.php file.
Example
// apply action function action_xclusive_before_header() { //run action here echo '<menu>my menu</menu>'; } add_action('xclusive_before_header', 'action_xclusive_before_header');