以下内容将仅向登录的管理员显示当前模板文件。如果添加到函数文件的顶部,则应在第一行看到此信息。
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);
}
但是,您仍然需要遵循页面模板的逻辑来确定加载了哪些页眉、侧栏和页脚。