心灵美黑裤

文章
6
资源
0
加入时间
2年10月17天

wordpress获取文章所属分类

1.获取全部分类<?php foreach((get_the_category()) as $category){ echo $category->cat_name; }?>2.获取第一个分类<?php $category = get_the_category(); ec...