Skip to content

Instantly share code, notes, and snippets.

@JackNUMBER
Last active August 29, 2015 14:05
Show Gist options
  • Save JackNUMBER/d422f391177b3f20682b to your computer and use it in GitHub Desktop.
Save JackNUMBER/d422f391177b3f20682b to your computer and use it in GitHub Desktop.
[Wordpress] Display current template file
<?php
/* in function.php */
// For debugging - display current template 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