30 under 30
// WP_Query arguments $args = array( 'post_type' => array( 'post' ), 'nopaging' => true, 'order' => 'ASC', 'orderby' => 'title', ); // The Query $thirty = new WP_Query( $args ); // The Loop if ( $thirty->have_posts() ) { while ( $thirty->have_posts() ) { $thirty->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();