WordPress获取文章分类函数:the_category

WordPress模板函数the_category用于在文章页或归档页的文章列表中输出当前文章所属分类,即使有…

WordPress模板函数the_category用于在文章页或归档页的文章列表中输出当前文章所属分类,即使有多个分类也会一并输出。

the_category( string $separator = '', string $parents = '', int $post_id = false )

函数参数

$separator

字符串值,默认为空

默认以无序列表输出分类链接,当文章指定了多个分类时,提供一个字符用于分隔这些分类链接。

$parents

字符串值,默认为空

指定父分类的显示方式,可选值如下:

  • 空值:不输出父分类;
  • multiple:父分类和子分类都是单独的链接,但处于同一个li元素中;
  • single:不输出父分类链接,但父分类的名称会出现在子分类链接锚文本中;

$post_id

整数型,默认值:false

文章的ID,默认使用当前文章ID。

函数使用示例

用 > 分隔分类链接,并且输出父分类链接,非常适合用于制作面包屑导航:

<?php the_category( ' > ', 'multiple' ); ?>

扩展阅读

the_category()函数位于:wp-includes/category-template.php

相关函数:

  • the_category_rss()
  • single_cat_title()
  • category_description()
  • wp_dropdown_categories()
  • wp_list_categories()
  • get_the_category()
  • get_category_parents()
  • get_category_link()
  • is_category()
  • in_category()
类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册