小编Nit*_*son的帖子

wordpress在wordpress循环中获取自定义帖子类型的类别名称?

我想在查询帖子循环中获取自定义帖子类型的类别名称.

这是我的代码:

query_posts(array('post_type'=>'portfolio','posts_per_page'=>4, 'orderby' => 'ID', 'order' => 'DESC' ));

while ( have_posts() ) : the_post();

<li>
    <div class="foli_img"> <a href="<?php echo get_permalink();?>"> <span class="next"> </span> </a> <?php the_post_thumbnail();?> </div>
    <h3 class="style"><?php the_title();?></h3>
    <?php the_content();?>
    <h4><a  href="#">I want the category name here</a></h4>
</li>
<?php endwhile;?>
Run Code Online (Sandbox Code Playgroud)

php wordpress

3
推荐指数
1
解决办法
2万
查看次数

标签 统计

php ×1

wordpress ×1