• 5, 'post_type' => 'page', 'orderby' => 'name', 'order' => 'ASC', ); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) { while ( $the_query->have_posts() ) { $the_query->the_post(); the_title( '
  • ', '
  • ' ); } wp_reset_postdata(); } ?>