wordpress获取文章所属分类 1.获取全部分类<?php foreach((get_the_category()) as $category){ echo $category->cat_name; }?>2.获取第一个分类<?php $category = get_the_category(); ec... php 2023-09-08 71 点赞 1 评论 107 浏览