当用户单击一个类别链接或搜索某个内容时,我只需添加一行,所以我想在索引中这样做。php,而不是创建其他模板文件,如搜索。php和类别。php:
<?php if(is_search()): ?>
<h1><?php the_search_query(); ?></h1>
<?php endif; ?>
<?php if(is_category()): ?>
<h1><?php single_cat_title(); ?></h1>
<?php endif; ?>
这是一种好的做法吗?如果没有,为什么?说到速度,哪个更好?