我建议使用这个插件Reveal Template https://wordpress.org/plugins/reveal-template/
备选方案:显示当前模板https://wordpress.org/plugins/show-current-template/
或者您可以使用此代码段(https://gist.github.com/wokamoto/4553528):
add_action(\'wp_footer\', \'view_template_files\');
if ( !function_exists( \'view_template_files\' ) ):
function view_template_files() {
if ( defined(\'WP_DEBUG\') && WP_DEBUG ) {
global $template;
$template_name = basename( $template, \'.php\' );
$template_dir = basename ( dirname( $template ) );
$style_top = ( is_admin_bar_showing() ) ? "35px" : "0px";
echo \'<code style="position: fixed; top: \' . $style_top . \'; right: 10px; z-index: 9999; background-color: rgba(255, 255, 255, 0.5); padding: 10px; color: #000000; border: solid 2px #000000; ">\';
echo "テーマのディレクトリ名:" . $template_dir;
echo " テンプレートファイル名:" . $template_name;
echo "</code>\\n";
}
}
endif;
正如你所见,你必须
WP_DEBUG
已定义常量。