可以通过 PHP 中的 get_included_files() 函数获取所有包含文件的列表。这是要在模板的 footer.php 文件中设置的 PHP 脚本:
// echo '<!--'; // you can display this code or show it in an HTML comment
$files = get_included_files();
if ($display_only_theme_files === true) {
$theme_folder = get_template_directory();
foreach ($files as $key => $file) {
if (strstr($file, $theme_folder) === false) {
unset($files[$key]);
}
}
}
print_r($files);
// echo '-->'; // you can display this code or show it in an HTML comment
该脚本将向您显示与您的模板相关的所有包含文件。换句话说,您将有可能知道使用了哪个文件模板。
请务必仅在您的开发模式下使用此代码,并在生产时将其删除。