Cursos
// WP_Query arguments $args = array( 'post_type' => array( 'cursos' ), 'posts_per_page' => '12', 'tax_query' => array( array( 'taxonomy' => 'nossos-cursos', 'terms' => 'destaque', ), ), ); // The Query $query_cursos = new WP_Query( $args ); // The Loop if ( $query_cursos->have_posts() ) { while ( $query_cursos->have_posts() ) { $query_cursos->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();