wordpress新注册的分类文章循环中调用分类名

使用的是query_posts查询

比如说用如下的文章查询

<?php
query_posts(array('post_type'=>'hx_post','posts_per_page'=>4, 'orderby' => 'ID', 'order' => 'DESC' ));
while ( have_posts() ) : the_post();
?>

<a>
    <div class="img"><?php the_post_thumbnail();?> </div>
    <h3 class="title"><?php the_title();?></h3>
    <?php the_content();?>
    <h4><a href="#">想在这里显示自己注册的分类名</a></h4>
</a>
<?php endwhile;?>

这种的wordpress主题调用方式和常规的分类调用方式是一样的,相当于是获取置顶文章的分类信息。

get_the_category(postid)

这样就可以了,代码如下

<?php
query_posts(array('post_type'=>'hx_post','posts_per_page'=>4, 'orderby' => 'ID', 'order' => 'DESC' ));
while ( have_posts() ) : the_post();
?>

<div>
    <div class="img"><?php the_post_thumbnail();?> </div>
    <h3 class="title"><?php the_title();?></h3>
    <?php the_content();?>
    <h4><a href="#"><?php current(get_the_category(get_the_ID()))->name ?></a></h4>
</div>

<?php endwhile;?>
我爱主题网 自2012
主题:260+ 销售:1000+
兼容浏览器

电话咨询

7*12服务咨询电话:

133-7205-6573

微信咨询