显示wordpress父级分类别名。
//显示父级分类别名 $category = get_the_category(); $category_parent_id = $category[0]->category_parent; $category_parent = get_term( $category_parent_id, 'category' ); echo $category_parent->slug; //显示父级分类名称 $category = get_the_category(); $parent = get_cat_name($category[0]->category_parent); echo $parent;
评论区
发表新的留言
您可以留言提出您的疑问或建议。
您的留言得到回复时,会通过您填写的邮箱提醒您。