products
// WP_Query arguments $args = array( 'post_type' => array( 'product' ), 'post_status' => array( 'publish' ), 'has_password' => false, 'posts_per_page' => '200', 'order' => 'DESC', 'orderby' => 'id', ); // The Query $query = new WP_Query( $args );