Skip to content

Instantly share code, notes, and snippets.

@corypina
Created June 4, 2020 19:37
Show Gist options
  • Select an option

  • Save corypina/0abca419055f80bb4b0d76185e9c7c38 to your computer and use it in GitHub Desktop.

Select an option

Save corypina/0abca419055f80bb4b0d76185e9c7c38 to your computer and use it in GitHub Desktop.
Show current WP template in use
<?php
// Show the current template in use
// To use, add ?show-template to URL
add_action('wp_head', 'show_template_filename');
function show_template_filename() {
if ( isset($_GET['show-template']) ) {
global $template;
echo '<span style="background-color: #ooo;color: #fff;">';
print_r($template);
echo '</span>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment