Created
June 4, 2020 19:37
-
-
Save corypina/0abca419055f80bb4b0d76185e9c7c38 to your computer and use it in GitHub Desktop.
Show current WP template in use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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