SOHO建站

标签: 父分类别名

共找到相关结果约1个

single文章页获取父分类别名

将下面这段代码添加到single.php中需要显示父分类别名的位置,就可以显示出父分类的别名。

<?php
$category = get_the_category(); 
$parent = get_category($category[0]->category_parent);
echo $parent->slug;
?>