最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp query - Custom post type category returns null

programmeradmin0浏览0评论

I created a CPT with CPT UI and register a taxonomy for my CPT.

I get all of this post type

<?php 

$args = array(
'post_type' => 'market',
'post_status' => 'publish',
'posts_per_page' => -1    );              

$the_query = new WP_Query( $args );
if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : 
$the_query->the_post(); 
?>      

everything works fine but <?php the_category(', '); ?> returns null.

where is the problem?

发布评论

评论列表(0)

  1. 暂无评论