首页 > CMS > Wordpress > 正文

wordpress不同分类调用当前子分类

2024-09-07 00:51:11
字体:
来源:转载
供稿:网友

wordpress不同分类调用当前子分类,这种需求在一些企业网站中经常见到,例如进入产品中心目录希望侧边栏显示产品中心目录下面的子分类,实现这种效果,我们需要通过两步骤实现:

1、获取当前目录的ID或别名;

2、使用某个分类下面的子分类标签完成调用。

以下是实现方法:

1、获取当前目录的ID;你需要在函数文件functions.php中添加以下获取当前分类目录ID的代码:

  1. //获取当前分类ID 
  2. function get_category_root_id($cat)   { 
  3.  $this_category = get_category($cat);  // 取得当前分类 
  4.   while($this_category->category_parent)   // 若当前分类有上级分类时,循环 
  5.   { 
  6.    $this_category = get_category($this_category->category_parent);   // 将当前分类设为上级分类(往上爬 
  7.   } 
  8.   return $this_category->term_id; // 返回根分类的id号  
  9.  } 

2、以上代码返回的当前目录的ID为:get_category_root_id($cat),下一步我们只需要通过wp_list_cats标签在参数中添加child_of的值为 get_category_root_id($cat) 就可以了,所以调用标签如下:

  1. <?php wp_list_cats('child_of=' . get_category_root_id($cat) . '&depth=1&hide_empty=0&hierarchical=1&optioncount=1');?> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表