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