$products
// WP_Query arguments $args = array( 'post_type' => array( 'product' ), 'post_status' => array( 'publish' ), 'nopaging' => true, 'posts_per_page' => '999', 'order' => 'ASC', 'orderby' => 'id', ); // The Query $products = new WP_Query( $args ); // The Loop if ( $products->have_posts() ) { while ( $products->have_posts() ) { $products->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();