时间:2024-03-16
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()
Copyright © 2019-2024 2543.cn