Created
November 17, 2014 02:19
-
-
Save nroca/92a1cbe217644cb5eee6 to your computer and use it in GitHub Desktop.
Show what template is being used
This file contains 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
add_action('wp_head', 'show_template'); | |
function show_template() { | |
global $template; | |
print_r($template); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment