当前位置:首页 > CMS教程 > WordPress > 列表

WordPress不同分类使用不同的文章模板

发布:smiling 来源: PHP粉丝网  添加日期:2018-12-06 10:07:56 浏览: 评论:0 

复制下段代码到single.php中,写文章时如果选择分类目录为solution,则该文章选择的模板为single-solution.php;

同理如果选择分类目录为product,则该文章选择的模板为single-product.php。

  1. <?php  
  2.  
  3. if ( in_category(array('solution' )) ) { 
  4.  
  5.     get_template_part('single-solution' ); 
  6.  
  7. elseif ( in_category(array('product' )) ) { 
  8.  
  9.     get_template_part('single-product' ); 
  10.  
  11. else { 
  12.  
  13.     get_template_part('index' ); 
  14.  
  15.  
  16. ?> 

Tags: 不同分类 文章模板

分享到: