复制下段代码到single.php中,写文章时如果选择分类目录为solution,则该文章选择的模板为single-solution.php;
同理如果选择分类目录为product,则该文章选择的模板为single-product.php。
- <?php
- if ( in_category(array('solution' )) ) {
- get_template_part('single-solution' );
- } elseif ( in_category(array('product' )) ) {
- get_template_part('single-product' );
- } else {
- get_template_part('index' );
- }
- ?>
新闻热点
疑难解答
图片精选