Query Taxonomia
Loop e query com taxonomia
// WP_Query arguments $args = array( 'name' => 'post_produtos', 'tax_query' => array( array( 'taxonomy' => 'tipo_produto', ), ), ); // The Query $loop = new WP_Query( $args ); // The Loop if ( $loop->have_posts() ) { while ( $loop->have_posts() ) { $loop->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();