It get posts by taxomony terms. // Pega posts pela taxonomia
function feed_cidades($categoria) {
if ($categoria == '') {
$args = array (
'post_type' => 'cidades', //it can be other
'posts_per_page' => '-1'
//'post__not_in' => array($exclude)
);
} else {
$args = array (
'post_type' => 'riquezas', //it can be other
'posts_per_page' => '-1',
//'post__not_in' => array($exclude),
'tax_query' => array(
array(
'taxonomy' => 'regiao',
'field' => 'slug',
'terms' => $categoria,
),
)
);
}
if ($categoria == 'natureza') {
$texto = 'Retranca natureza';
} elseif ($categoria == 'pessoas') {
$texto = 'Retranca pessoas';
}
// The Query
$postagens = new WP_Query( $args );