Display the current template

//  Display at header the current template
function show_template() {
   global $template;
   print_r($template);
}
add_action( 'wp_head', 'show_template' );
Scroll to Top