在制作wordpress主题的时候经常遇到怎么在wordpress分类页显示当前分类下的子分类或者在文章页显示所属分类的子分类这样的问题,尤其在做中文企业主题的时候必须要用到这个技巧的。今天和大家分享之前我做企业主题时调用子分类的函数。
1.现在function.php里面添加下面的代码
- function get_category_root_id($cat) {
- $this_category = get_category($cat);
- while($this_category->category_parent)
- {
- $this_category = get_category($this_category->category_parent);
- }
- return $this_category->term_id;
- }
2.然后在页面要显示二级分类的地方粘贴下面这段代码即可
- <?php wp_list_categories('child_of=' . get_category_root_id($cat) . '&depth=1&hide_empty=0&hierarchical=1&optioncount=1&title_li=');?>
这个函数的功能就是在分类页和文章页显示当前分类的子分类(二级分类)。
温馨提示:本文最后更新于2019年3月19日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!