你可以用很多方法来做。
我推荐两种解决方案:
1。编辑类别模板只需编辑category.php
模板并将if语句放入其中:
if ( is_category( array(15, 19) ) )
get_template_part(\'category-15-19\');
else
get_template_part(\'category-all\')
然后把15类和19类的代码放入
category-15-19.php
其他类别的文件和代码
category-all.php
文件
2。使用template_include
将过滤器添加到template_include
钩它应该返回WordPress应该显示的模板名称。
function my_categories_template($template_name) {
if ( is_category( array(15, 19) ) )
return \'category-15-19.php\';
return $template_name;
}
add_filter( \'template_include\', \'my_categories_template\' );