Skip to content

Instantly share code, notes, and snippets.

@jhned
Last active June 15, 2016 13:26
Show Gist options
  • Save jhned/d049af32c5ca710d0a463c33e9af05b7 to your computer and use it in GitHub Desktop.
Save jhned/d049af32c5ca710d0a463c33e9af05b7 to your computer and use it in GitHub Desktop.
Header-int call
<?php
add_action( 'after_header', 'namespace_get_header_int', 20 );
function namespace_get_header_int() {
if ( !is_front_page() ) {
get_header('int');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment