3

我正在使用 WordPress。

有多个类别及其子类别。在一般页面中,我显示所有第一级类别。这是我的代码:

$args = array(
   'type' => 'product-items',
   'child_of'  => 0,
   'parent'  => '',
   'order' => 'DESC',
   'hide_empty' => 0,
   'hierarchical' => 1,
   'exclude' => '',
   'include' => '',
   'number' => '',
   'taxonomy' => 'product-category',
   'pad_counts' => false,
   'depth' => 1,
   'title_li' => '' 
);
wp_list_categories($args);

单击并进入一级类别后,您只需要在那里查看其子类别。当我删除'depth' => 1,选项时,所有子项都出现在其父类别下,但对于页面速度/加载,在子页面中我需要显示所有第一级类别,但只显示当前类别的子项。

例如,我有以下 3 个类别:

  • 第一类
  • 第 2 类
  • 第 3 类

想象一下,我点击“类别 1”。现在是这样的:

  • 第一类
    • 第 1 个子类别 1
    • 第 2 个子类别 1
    • 第三个子类别 1
  • 第 2 类
    • 第 2 个子类别
      • 第二类子的第一子
      • 第二类子的第二子
      • 第二类子的第三子
    • 第 2 个子类别 2
    • 第 3 个子类别 2
  • 第 3 类
    • 第 3 个子类别
    • 第二个子类别 3
    • 第三个子类别 3

但我需要它在子页面中是这样的:

  • 第一类
    • 第 1 个子类别 1
    • 第 2 个子类别 1
    • 第三个子类别 1
  • 第 2 类
  • 第 3 类

不知道如何通过wp_list_categories()功能实现这一点。请问有什么想法吗?

4

3 回答 3

1

如果您使用 2 get_terms() 而不是 wp_list_categories 会更好。它会更快且可定制。一个用于父类别,另一个用于当前类别的子类别。这是工作示例:

   function display_cats($cats,$current=0,$current_children=array()){
    $ret= '<ul>';
    foreach ($cats as $cs){
      $children=($current!=$cs->term_id)?'':display_cats($current_children);
      $ret.= '<li> <a href="'.get_term_link($cs->term_id).'"> '.$cs->name.'</a> '.$children.' </li>
      ';
    }
    $ret.= '</ul>';
    return $ret;
  }


  $current_cat=9;//for example
  $parents=get_terms('product_cat',array('taxonomy'=>'product_cat','echo'=>false,'depth'=>0));
  $current_children=get_terms('product_cat',array('taxonomy'=>'product_cat','child_of'=>  $current_cat ,'echo'=>false));
  echo display_cats($parents,$current_cat,$current_children);
于 2017-11-03T15:19:34.037 回答
1

对于仍然需要帮助的任何人,这里是如何做到的。

$category = get_queried_object();
$category_id = $category->term_id;

从这里我们将获得当前的类别 ID,我们需要将它传递给数组。

'child_of'  => $category_id,

这将为您提供当前类别的所有子类别。

希望这会有所帮助。

于 2020-03-17T18:00:34.880 回答
0

我会走这get_terms()条路。诸如此类的东西

$terms = get_terms($args);

foreach($terms as $term){
   // If $term is current term use get_terms() again to fetch its children
}

https://developer.wordpress.org/reference/functions/get_terms/

于 2017-11-03T15:11:31.497 回答