wordpress获取文章所属分类

1.获取全部分类

<?php
     foreach((get_the_category()) as $category){
           echo $category->cat_name;
     }
?>

2.获取第一个分类

<?php
      $category = get_the_category();
      echo $category[0]->cat_name;
?>

 

posted @ 2018-01-14 19:01  兔子先生i  阅读(2899)  评论(0编辑  收藏  举报