WordPress获取父分类函数:get_category_parents

WordPress模板函数get_category_parents用于获取父分类,在制作面包屑导航时非常有用。…

WordPress模板函数get_category_parents用于获取父分类,在制作面包屑导航时非常有用。

get_category_parents( integer $id, boolean $link = false, string $separator = '/', boolean $nicename = false, array $deprecated = array() )

函数参数

$id

整数型,默认为空

指定分类的ID,将输出该分类及其父分类,该参数不能为空,否则返回空数组并报错。

$link

布尔值,默认值:false

输出的分类名称是否带有链接,默认不带链接

$separator

字符串值,默认值:/

各个分类之间的分隔符,可以是HTML函数,例如:<br />

$nicename

布尔值,默认值:false

是否输出分类别名,默认输出分类名称。

$deprecated

数组,默认为空

函数使用示例

<?php echo get_category_parents( $cat, true, ' <br /> ' ); ?>

扩展阅读

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

相关函数:

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

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

评论 (0)COMMENT

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