ea-query
// WP_Query arguments $args = array( 'order' => 'DESC', 'orderby' => 'menu_order', ); // The Query $team-cat = new WP_Query( $args ); // The Loop if ( $team-cat->have_posts() ) { while ( $team-cat->have_posts() ) { $team-cat->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();