Here is cool little functionto stick in functions to help you see which template you are viewing when looking at a page in the browser. It simply shows the template file name in the footer. It is based on a plugin called “What Template” but has the improved feature of only working when you are logged in as admin.
if ( is_user_logged_in() && current_user_can('manage_options') ) {
add_action('wp_footer', 'show_template');
}
function show_template() {
global $template;
print_r($template);
}
?>

