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