WordPress分类列表函数:wp_list_categories用法及参数详解举例

注意:

1、 wp_list_categories() 和 list_cats() 以及 wp_list_cats() 的使用类似,但是后面 2 个已经弃用。

2、如果你希望不格式化输出分类,请使用 get_categories()

3、因为 WordPress 中内置扩展的小工具功能,所以我们不经任何函数就可以在边栏或是其他我们想要的位置显示一个分类列表,所以wp_list_categories函数就很少有人用到。

4、该函数使用起来有点类似于wp_list_bookmarks()

5、该函数输出 应当包含在 ul 标签内

使用方法

  1. wp_list_categories( string|array $args = '' )

默认用法

  1. <?php
  2.  wp_list_categories( $args ); 
  3. $args = array(
  4.  'show_option_all'  => '',//是否列出分类链接
  5.  'orderby'      => 'name',//按名称排列
  6.  'order'       => 'ASC',//升、降序
  7.  'style'       => 'list',//是否用列表(ul>li)
  8.  'show_count'     => 0,//是否显示文章数量
  9.  'hide_empty'     => 1,//是否显示无日志分类
  10.  'use_desc_for_title' => 1,//是否显示分类描述
  11.  'child_of'      => 0,//是否限制子分类
  12.  'feed'        => '',//是否显示rss
  13.  'feed_type'     => '',//rss类型
  14.  'feed_image'     => '',//是否显示rss图片
  15.  'exclude'      => '',//排除分类的ID,多个用',(英文逗号)'分隔
  16.  'exclude_tree'    => '',//排除分类树,即父分类及其下的子分类
  17.  'include'      => '',//包括的分类
  18.  'hierarchical'    => true,//是否将子、父分类分级
  19.  'title_li'      => __( 'Categories' ),//列表标题的名称
  20.  'show_option_none'  => __('No categories'),//无分类时显示的标题
  21.  'number'       => null,//显示分类的数量
  22.  'echo'        => 1,//是否显示,显示或者返回字符串
  23.  'depth'       => 0,//层级限制
  24.  'current_category'  => 0,//添加一个没有的分类
  25.  'pad_counts'     => 0,//这个我也不明白
  26.  'taxonomy'      => 'category',//使用的分类法
  27.  'walker'       => null//用于显示的类
  28. ?>

用法举例

1、包含或排除某分类:
意思就是把分类ID为3,5,9,16的分类按名称顺序来排序:

  1. <?php wp_list_categories('orderby=name&include=3,5,9,16'); ?>

或者

  1. <ul>
  2.     <?php wp_list_categories( array(
  3.         'orderby' => 'name',
  4.         'include' => array( 3, 5, 9, 16 )
  5.     ) ); ?> 
  6. </ul>

2、按名称排列,并显示每个分类的日志总数,并不显示ID为10的分类:

  1. <?php wp_list_categories('orderby=name&show_count=1&exclude=10'); ?>

或者

  1. <ul>
  2.     <?php wp_list_categories( array(
  3.         'orderby'    => 'name',
  4.         'show_count' => true,
  5.         'exclude'    => array( 10 )
  6.     ) ); ?> 
  7. </ul>

3、显示或隐藏列表标题:
过滤ID为4和7的分类,并且列表标题设置为“511遇见”:

  1. <?php wp_list_categories('exclude=4,7&title_li=511遇见'); ?>

4、列表中只显示ID为5、9、23的分类,并把列表标题改为 Poetry (下面的格式是为了把“要显示的数据”和“标签参数区分开来”)

  1. <?php wp_list_categories('include=5,9,23&title_li=<h2>' . __('Poetry') . '</h2>' ); ?>

或者

  1. <ul>
  2.     <?php wp_list_categories( array(
  3.         'include'  => array( 5, 9, 23 ),
  4.         'title_li' => '<h2>' . __( 'Poetry', 'textdomain' ) . '</h2>'
  5.     ) ); ?> 
  6. </ul>

title_li参数设置或隐藏一个标题或标题wp_list_categories生成的类别列表。它默认为”(__(类别)”,即它显示这个词“类别”列表的标题。如果这个参数设置为null或空值,不显示标题。下面的示例代码不包括类别id 4和7和隐藏列表标题:

  1. <ul>
  2.     <?php wp_list_categories( array(
  3.         'exclude'  => array( 4,7 ),
  4.         'title_li' => ''
  5.     ) ); ?>
  6. </ul>

5、只显示指定分类的子分类

显示ID为 8 的分类的子分类,根据ID排序,显示文章数,并且将分类描述作为连接的 title属性。注意:如果父分类没有文章,将不显示父分类。

  1. <ul> 
  2. <?php wp_list_categories('orderby=id&show_count=1&use_desc_for_title=0&child_of=8'); ?>
  3. </ul>


或者:

  1. <ul>
  2.     <?php wp_list_categories( array(
  3.         'orderby'            => 'id',
  4.         'show_count'         => true,
  5.         'use_desc_for_title' => false,
  6.         'child_of'           => 8
  7.     ) ); ?>
  8. </ul>

6、移除分类计数的括号
当 show_count=1 ,每个分类的后面都将显示文章数,同时使用括号包含。如果你要移除括号,可以使用下面的代码

  1. <ul> 
  2. <?php
  3.  
  4. $variable = wp_list_categories( array(
  5.     'echo' => false,
  6.     'show_count' => true,
  7.     'title_li' => '<h2>' . __( 'Categories', 'textdomain' ) . '</h2>'
  8. ) );
  9.  
  10. $variable = preg_replace( '~\((\d+)\)(?=\s*+<)~', '$1', $variable );
  11. echo $variable;
  12. ?>
  13. </ul>

7、显示分类和 RSS Feed 连接
根据分类名称进行排序,显示文章数量,并且显示每个分类的 RSS 订阅链接:

  1. <ul>
  2. <ul>
  3.     <?php wp_list_categories( array(
  4.         'orderby'    => 'name',
  5.         'show_count' => true,
  6.         'feed'       => 'RSS'
  7.     ) ); ?>
  8. </ul>
  9. </ul>

使用Feed 图标替换文本,可以使用下面的代码:

  1. <ul>
  2.     <?php wp_list_categories( array(
  3.         'orderby'    => 'name',
  4.         'show_count' => true,
  5.         'feed_image' => '/images/rss.gif'
  6.     ) ); ?>
  7. </ul>

显示自定义分类法的项目:

在3.0版本添加了taxonomy 参数到  wp_list_categories() 。让你可以通过 taxonomy 参数来设置要显示的是哪种分类法下的分类项目。比如要显示分类法为 genre 的分类列表:

  1. // List terms in a given taxonomy using wp_list_categories (also useful as a widget if using a PHP Code plugin)
  2.  
  3. $taxonomy     = 'genre';
  4. $orderby      = 'name'; 
  5. $show_count   = false;
  6. $pad_counts   = false;
  7. $hierarchical = true;
  8. $title        = '';
  9.  
  10. $args = array(
  11.   'taxonomy'     => $taxonomy,
  12.   'orderby'      => $orderby,
  13.   'show_count'   => $show_count,
  14.   'pad_counts'   => $pad_counts,
  15.   'hierarchical' => $hierarchical,
  16.   'title_li'     => $title
  17. );
  18. ?> 
  19. <ul>
  20.     <?php wp_list_categories( $args ); ?>
  21. </ul>

显示文章对应的分类:

根据父-子关系来排序文章的分类。类似于 get_the_category_list() 函数(根据名称排序分类)。这个例子必须使用内循环。

  1. $taxonomy = 'category';
  2.  
  3. // Get the term IDs assigned to post.
  4. $post_terms = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) );
  5.  
  6. // Separator between links.
  7. $separator = ', ';
  8.  
  9. if ( ! empty( $post_terms ) && ! is_wp_error( $post_terms ) ) {
  10.  
  11.     $term_ids = implode( ',' , $post_terms );
  12.  
  13.     $terms = wp_list_categories( array(
  14.         'title_li' => '',
  15.         'style'    => 'none',
  16.         'echo'     => false,
  17.         'taxonomy' => $taxonomy,
  18.         'include'  => $term_ids
  19.     ) );
  20.  
  21.     $terms = rtrim( trim( str_replace( '<br />',  $separator, $terms ) ), $separator );
  22.  
  23.     // Display post categories.
  24.     echo  $terms;
  25. }

标记和样式化分类列表

默认情况下, wp_list_categories() 生成的是无序列表(ul),使用 li 标签来包含每个分类,而且列表的标题为"Categories"。

你可以通过设置 title_li 为空值来隐藏标题。你可以自定义包装 有序列表或无序列表。如果你不需要以列表输出分类,可以将 style 参数设置为 none。

你可以根据下面的CSS选择器来样式化输出:

  1. li.categories { ... }  /* outermost list item */
  2. li.cat-item { ... }
  3. li.cat-item-7 { ... }  /* category ID #7, etc */
  4. li.current-cat { ... }
  5. li.current-cat-parent { ... }
  6. ul.children { ... }

小结

1、官方文档:https://developer.wordpress.org/reference/functions/wp_list_categories/

2、因为我们没有必要再使用这个函数,最让我们心动的就是最后这个CSS的改变,这样可以让你更灵活的显示在前台,比如有人问,如何去掉函数中封装的 li 标签,这样问的原因我猜主要是它的布局不是采用了 li 标签,或者一些样式加布进去,所以你多多研究一下总后一个例子还是很有必要的。

3、如何去掉li

  1. <?php wp_list_categories('style=none'); ?>

发布日期:

所属分类: WordPress 函数 标签:   


没有相关文章!