Use two WP Query in template
Yes, you can use two instances of WP_Query as long as you call the wp_reset_postdata function, just like you did in your code. You’re missing the while statement and posts_per_page for WP_Query array argument item. <?php $query = new WP_Query( array( ‘post_type’ => ‘item_a’, ‘posts_per_page’ => -1 /** Show all **/ ) ); if ( … Read more