Skip to content

Instantly share code, notes, and snippets.

@rxnlabs
Last active August 29, 2015 14:06
Show Gist options
  • Save rxnlabs/4becee924a67e8b65baf to your computer and use it in GitHub Desktop.
Save rxnlabs/4becee924a67e8b65baf to your computer and use it in GitHub Desktop.
WP - PHP WordPress chage page template at run time
<?php
add_filter( 'template_include', 'my_callback' );
function my_callback( $original_template ) {
if ( some_condition() ) {
return SOME_PATH . '/some-custom-file.php';
} else {
return $original_template;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment