CS Products
// WP_Query arguments $args = array( 'post_type' => array( 'product' ), 'post_status' => array( 'publish' ), 'nopaging' => false, 'posts_per_page' => '999', 'posts_per_archive_page' => '999', ); // The Query $inner_query = new WP_Query( $args );