Last active
August 29, 2015 14:06
-
-
Save rxnlabs/4becee924a67e8b65baf to your computer and use it in GitHub Desktop.
WP - PHP WordPress chage page template at run time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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