我试图让自定义帖子返回查询并显示,但它返回并显示默认/标准帖子。如何从我的CPT获取帖子?
$query = new WP_Query( array( \'job_posting_type\' => \'Job Post\' ) );
if ( $query->have_posts() ) : ?>
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
<div>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</div>
<?php endwhile; wp_reset_postdata(); ?>
<!-- show pagination here -->
<?php else : ?>
<!-- show 404 error here -->
<?php endif; ?>