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