下吧资源网_专注精品网站源码下载的网站_免费商业源码分享

WordPress如*父分类获取所有子分类/二级分类

在我们开发WordPress主题的过程中,如果有一个需求是要获取到父分类的所有子分类,该怎么实现呢?
其实这个需求是很简单的,几行代码就可以搞定。

今天站壳网给大家带来一个小小的WordPress教程,如*父分类获取所有子分类/二级分类。

首先在functiоn.php里面添加下面的代码。

//父分类获取所有子分类 functiоn 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; // 返回根分类的id号 }

使用方法

将下面代码放在需要用到子分类的父分类即可

<?php wp_list_categories( $args = array( \'show_option_all\' => \'\', \'orderby\' => \'name\', \'use_desc_for_title\' => 1, \'child_of\' => get_category_root_id($cat), \'optioncount\'=>1, \'hierarchical\' => 1, \'title_li\' => \'\', \'show_option_none\' => __(\'<span style=\"padding:0 20px;\">抱歉,暂无分类。</span>\'), \'depth\' => 1, \'taxonomy\' => \'category\', \'walker\' => null )); ?>

 

本文链接:https://www.xiaba.cc/html/2081.html

版权声明:站内所有文章皆来自网络转载,只供模板演示使用,并无任何其它意义!

发表评论 共有 0 条评论)

联系客服
网站客服 业务合作 Q交流群
123456789
公众号
公众号
公众号
返回顶部