如果主题没有search.php
文件index.php
将使用。
用于呈现搜索结果索引页的模板文件
- search.php
- index.php
[更新]使用以下内容打印用于呈现页面的当前模板:
add_filter( \'the_content\', \'so_9405896_the_content_filter\', 20, 1 );
function so_9405896_the_content_filter( $content )
{
if( is_admin() || !current_user_can( \'delete_plugins\' ) )
return $content;
global $template;
$the_templ = \'<strong style="background-color: #CCC;padding:10px">TEMPLATE = \'
. basename( $template ) . \'</strong><br />\';
$content = sprintf( $the_templ . \'%s\', $content );
return $content;
}
其结果是: