Skip to content

Instantly share code, notes, and snippets.

@JPry
Created November 13, 2012 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JPry/4067210 to your computer and use it in GitHub Desktop.
Save JPry/4067210 to your computer and use it in GitHub Desktop.
Override template hierarchy
<?php
add_filter( 'template_include', 'jp_template_override' );
function jp_template_override( $template ) {
if ( is_page( 'home' ) ) {
$template = get_query_template( 'page' );
}
return $template;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment