WordPress获取当前分类的子分类

2018-07-18 wordpress经验
  • 文章介绍
  • 快速入门
  • 评价&建议

在制作WordPress主题的时候经常遇到怎么在WordPress分类页显示当前分类下的子分类或者在文章页显示所属分类的子分类这样的问题,尤其在做中文企业主题的时候必须要用到这个技巧的。今天和大家分享之前我做企业主题时调用子分类的函数。

1.现在function.php里面添加下面的代码

  1. function get_category_root_id($cat)  
  2. $this_category = get_category($cat);   
  3. while($this_category->category_parent)   
  4. {  
  5. $this_category = get_category($this_category->category_parent);   
  6. }  
  7. return $this_category->term_id;   
  8. }  

2.然后在页面要显示二级分类的地方粘贴下面这段代码即可

  1. <?php  
  2. if(is_single()||is_category())  
  3. {  
  4. if(get_category_children(get_category_root_id(the_category_ID(false)))!= “” )  
  5. {  
  6. echo ‘<ul>’;  
  7. echo wp_list_categories(“child_of=”.get_category_root_id(the_category_ID(false)). “&depth=0&hide_empty=0&title_li=&orderby=id&order=ASC”);  
  8. echo ‘</ul>’;  
  9. }  
  10. ?>  

这个函数的功能就是在分类页和文章页显示当前分类的子分类(二级分类)。

0 0

企业建站推荐正版商业主题,国内专业团队开发,完善售后,是您不二选择。

正版主题商店

主题猫WP建站,累计帮助1300+客户成功建站,为站长提供支持!

立刻开启你的建站之旅
QQ在线客服

服务热线

wordpress建站咨询