rex
// WP_Query arguments $args = array( 'post_type' => array( 'page' ), 'order' => 'ASC', 'orderby' => 'date', ); // The Query $rex = new WP_Query( $args ); // The Loop if ( $rex->have_posts() ) { while ( $rex->have_posts() ) { $rex->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();