Skip to content

Instantly share code, notes, and snippets.

@cdils
Created January 31, 2014 15:40
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 cdils/8734447 to your computer and use it in GitHub Desktop.
Save cdils/8734447 to your computer and use it in GitHub Desktop.
Figure out what template file is being used. Don't use on live sites. :)
<?php //remove opening tag
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