wordpress获取当前分类的子分类列表的方法
作者:xlnxin发布时间:2021-04-15分类:WordPress教程浏览:498
导读:部分仿站客户对制作的wordpress企业主题需求显示当前分类页面的子分类的功能效果,使用wordpress程序模板很容易可以解决这个问题,WP博主仅需要添加两段相应的获...
部分仿站客户对制作的wordpress企业主题需求显示当前分类页面的子分类的功能效果,使用wordpress程序模板很容易可以解决这个问题,WP博主仅需要添加两段相应的获取子分类的函数代码即可。
一、把以下函数代码添加到当前主题的functions.php文件
1 2 3 4 5 6 7 8 9 | 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; // 返回根分类的id号 } |
二、在分类页面archive.php添加调用代码:
1 2 3 | <?php wp_list_categories("child_of=".get_category_root_id(the_category_ID(false)). "&depth=0&hide_empty=0&title_li="); ?> |
相关推荐
- 双击excel打开不显示任何内容,只能在excel里面打开文件解决方法
- 小程序saveVideoToPhotosAlbum安卓手机可以下载MP4苹果手机不能下载解决方法
- 小程序逆向错误之 typeof3 is not a function
- 小程序e.target.dataset和e.currentTarget.dataset区别
- excel vba实现模板批量打印
- Joomla模块使用方法
- 如何优化wordpress性能提升加载速度
- 旧版本emlog5.3.1和6.0.0可以升级到pro吗?
- EXCEL双击不能直接打开EXCEL文件解决办法
- 微信小程序function函数arguments 是什么意思呢?
- WordPress教程排行
- 最近发表