Skip to content

Instantly share code, notes, and snippets.

@jordancalder
Created January 28, 2014 17:35
Show Gist options
  • Save jordancalder/8672286 to your computer and use it in GitHub Desktop.
Save jordancalder/8672286 to your computer and use it in GitHub Desktop.
Wordpress - Display Current Template
//Add to functions.php
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