Skip to content

Instantly share code, notes, and snippets.

@ksdSnippets
Created November 2, 2012 01:24
Show Gist options
  • Select an option

  • Save ksdSnippets/3998055 to your computer and use it in GitHub Desktop.

Select an option

Save ksdSnippets/3998055 to your computer and use it in GitHub Desktop.
WP PHP: Show Template File Path on Front End
//add to functions.php
add_action('wp_head', 'show_template');
function show_template() {
global $template;
echo '<span style="color: #000;">' . $template . '</span>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment