WordPress不同分类使用不同的文章模板
发布:smiling 来源: PHP粉丝网 添加日期:2018-12-06 10:07:56 浏览: 评论:0
复制下段代码到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' );
- }
- ?>
Tags: 不同分类 文章模板
相关文章
- ·wordpress主题不同分类显示不同样式模板(2014-03-19)
- ·wordpress不同分类调用当前子分类(2014-07-23)
- ·WordPress不同分类调用不同分类目录(2014-11-21)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)