Skip to content

Instantly share code, notes, and snippets.

@henrikakselsen
Last active July 5, 2016 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henrikakselsen/246076cfa38e11a8ba3845ac601c678f to your computer and use it in GitHub Desktop.
Save henrikakselsen/246076cfa38e11a8ba3845ac601c678f to your computer and use it in GitHub Desktop.
Show which template is used by WordPress
// Add this to your functions.php file
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