Show WordPress Template Being Used
<?php
//Show Wordpress template to logged in user down at the bottom
function show_template() {
global $template;
print_r( $template );
}
add_action( 'admin_bar_menu', 'show_template' );