single文章页获取父分类别名
技术文章 2023年12月30日
将下面这段代码添加到single.php中需要显示父分类别名的位置,就可以显示出父分类的别名。
<?php
$category = get_the_category();
$parent = get_category($category[0]->category_parent);
echo $parent->slug;
?>
技术文章 2023年12月30日
将下面这段代码添加到single.php中需要显示父分类别名的位置,就可以显示出父分类的别名。
<?php
$category = get_the_category();
$parent = get_category($category[0]->category_parent);
echo $parent->slug;
?>