码迷,mamicode.com
首页 > 其他好文 > 详细

wordpress获取文章所属分类

时间:2018-01-14 20:21:37      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:一个   文章   pos   reac   第一个   class   log   div   style   

1.获取全部分类

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

2.获取第一个分类

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

 

wordpress获取文章所属分类

标签:一个   文章   pos   reac   第一个   class   log   div   style   

原文地址:https://www.cnblogs.com/Mrrabbit/p/8283974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!