Skip to content

Instantly share code, notes, and snippets.

@Codevz
Last active June 18, 2022 10:24
Show Gist options
  • Select an option

  • Save Codevz/dc8f25b4304a9b4b89ceee08411ef888 to your computer and use it in GitHub Desktop.

Select an option

Save Codevz/dc8f25b4304a9b4b89ceee08411ef888 to your computer and use it in GitHub Desktop.
XTRA WP Theme - Action hook for adding content after header bottom bar, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes after header bottom bar.
*/
function my_prefix_after_header_bottom_bar() {
echo 'This is a custom content text.';
}
add_action( 'codevz/after_header_3', 'my_prefix_after_header_bottom_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment