我是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();
?>
我会感谢你的帮助!