Skip to content

Instantly share code, notes, and snippets.

@kbcarte
Created June 27, 2022 15:21
Show Gist options
  • Save kbcarte/31dda89005ef3340e4c5e94f3ebd17b3 to your computer and use it in GitHub Desktop.
Save kbcarte/31dda89005ef3340e4c5e94f3ebd17b3 to your computer and use it in GitHub Desktop.
WordPress show page template being used
<?php
// Yoink: https://mekshq.com/which-wordpress-template-file-used/
//For example, you can paste this into your theme functions.php file
function meks_which_template_is_loaded() {
if ( is_super_admin() ) {
global $template;
print_r( $template );
}
}
add_action( 'wp_footer', 'meks_which_template_is_loaded' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment