这是我使用的。它将向登录用户显示当前模板文件名。将此粘贴到函数中。php文件并在不使用时注释掉/删除。
// REMOVE - show template name
add_action(\'wp_head\', \'show_template\');
function show_template() {
global $template;
global $current_user;
get_currentuserinfo();
if ($current_user->user_level == 10 ) print_r($template);
}
// REMOVE - end show template name