一般用于面包屑中。
用于文章页(single.php)中
<?php
$category = get_the_category();//默认获取当前所属分类
echo ‘<a href=”#” rel=”category tag”>’ . $category[0]->name . ‘</a>’;
?>
用于自定义文章类型的single.php页面中
<?php
$category = get_the_terms(”, ‘cases_list’);//默认获取当前所属分类
echo ‘<a href=”#” rel=”category tag”>’ . $category[0]->name . ‘</a>’;
?>