以下是我在开发主题时使用的一些方法:
add_filter( \'template_include\', \'store_template_file\', 999 );
function store_template_file( $template ){
$GLOBALS[\'current_theme_file\'] = basename($template);
return $template;
}
add_action(\'wp_footer\',\'print_theme_file\');
function print_theme_file(){
if( !isset( $GLOBALS[\'current_theme_file\'] ) || is_admin() )
return;
echo \'<!-- Current theme file: \' . $GLOBALS[\'current_theme_file\'] . \'-->\';
}
一旦你把它粘贴到你的主题函数中。php文件它将在页脚处打印一条带有主题文件名称的HTML注释。