如何显示岗位类别名称

时间:2014-09-22 作者:Irwin

我是wordpress开发的新手,我有这个问题。

如何显示帖子类别名称?

示例:

帖子标题:Wordpress规则!帖子作者:Irwin R。发布日期:2014年9月22日,邮箱名称:Wordpress

我正在使用以下代码:

<?php
query_posts(array(\'cat\' => 5, \'posts_per_page\'=> 3, \'orderby\' => \'ASC\'));
while (have_posts()) { the_post(); 
?>    
<h3>Post Title: <?php the_title();?></h3>
<h3>Post Author: <?php the_author();?></h3>
<h3>Post Date: <?php the_date();?></h3>
<h3>Cat Name: // What function should I use here?</h3>
<?php       
}
wp_reset_query();
?>      
我会感谢你的帮助!

1 个回复
SO网友:Nicolai Grossherr

有:the_category(), 这不仅仅是一个恰如其分的名字。

除此之外,不要使用query_posts, 至于为什么要看这两个线程:

结束

相关推荐

Show Pages in Categories

通过将此代码添加到函数中,我创建了category函数。php:function page_category() { register_taxonomy_for_object_type(\'category\', \'page\'); } // Add to the admin_init hook of your theme functions.php file add_action( \'init\', \'page_category\' ); 但问