student query
// WP_Query arguments $args = array( 'post_type' => array( 'students' ), 'post_status' => array( 'publish' ), 'nopaging' => false, 'posts_per_page' => '-1', 'order' => 'ASC', 'orderby' => 'title', ); // The Query $query_students = new WP_Query( $args ); // The Loop if ( $query_students->have_posts() ) { while ( $query_students->have_posts() ) { $query_students->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();