Skip to content

Instantly share code, notes, and snippets.

@nroca
Created November 17, 2014 02:19
Show Gist options
  • Save nroca/92a1cbe217644cb5eee6 to your computer and use it in GitHub Desktop.
Save nroca/92a1cbe217644cb5eee6 to your computer and use it in GitHub Desktop.
Show what template is being used
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