Skip to content

Instantly share code, notes, and snippets.

@funteractive
Created June 7, 2013 22:16
Show Gist options
  • Save funteractive/5732792 to your computer and use it in GitHub Desktop.
Save funteractive/5732792 to your computer and use it in GitHub Desktop.
Display template name on front page of WordPress
<?php
add_filter( 'template_include', 'template_debug' );
function template_debug( $template ){
var_dump( $template );
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment