Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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