如何在循环内获取帖子类别标题?

时间:2012-04-04 作者:João

我陷入了一个相当简单的任务:在循环中获取当前帖子的类别标题,以便在函数中使用(不会自动打印)。有什么想法吗?

1 个回复
最合适的回答,由SO网友:Sam Margulies 整理而成

功能get_the_category() 返回类别对象的数组。要获取第一个类别的名称,请使用以下命令:

$categories = get_the_category(); 
$cat_name = $categories[0]->cat_name;
有关类别对象属性的列表,请参见documentation on get_the_category()

结束

相关推荐

Echo title attribute php

我有以下功能。php:function twentyten_continue_reading_link() { global $id; return \' <span class=\"readmore\"><a href=\"\'. get_permalink($id) . \'\" title=\"\' . the_title_attribute( array(\'echo\' => 0, \'before\' => \'Permalink to: \',