wordpress获取文章所属分类 Posted on 9 10 月, 2019 1.获取全部分类 <?php foreach((get_the_category()) as $category){ echo $category->cat_name; } ?> 2.获取第一个分类 <?php $category = get_the_category(); echo $category[0]->cat_name; ?> Post Views: 78