vehicles query
// WP_Query arguments $args = array( 'post_type' => array( 'listings' ), 'post_status' => array( 'published' ), 'posts_per_page' => '-1', 'order' => 'DESC', 'orderby' => 'id', ); // The Query $query = new WP_Query( $args );
// WP_Query arguments $args = array( 'post_type' => array( 'listings' ), 'post_status' => array( 'published' ), 'posts_per_page' => '-1', 'order' => 'DESC', 'orderby' => 'id', ); // The Query $query = new WP_Query( $args );