如果您试图确定WordPress呈现首页时使用的模板,请尝试以下操作:
创建一个名为wordpress_debug_template_file.php
并将其放置在与functions.php
并添加:
<?php
add_action(\'wp_head\', \'show_template\');
function show_template() {
global $template;
print_r($template);
}
?>
接下来,将以下内容添加到
functions.php
结束前的文件
?>
:
//Loads the template debugger
require_once(\'wordpress_debug_template_file.php\');
这将在每页顶部打印所有页面上使用的实际模板文件的绝对路径。
只需注释掉require_once
线路将其关闭。
希望这有帮助!