Skip to content

Instantly share code, notes, and snippets.

@carmolim
Created January 28, 2021 15:08
Show Gist options
  • Save carmolim/a7081c1425e1be15861f8cd34be12deb to your computer and use it in GitHub Desktop.
Save carmolim/a7081c1425e1be15861f8cd34be12deb to your computer and use it in GitHub Desktop.
query pela taxonomia
<?php
$the_query = new WP_Query( array(
'orderby' => 'rand',
'post__not_in'=> array(get_the_ID()),
'post_type' => 'area-atuacao',
'posts_per_page' => '3',
'tax_query' => array(
array(
'taxonomy' => 'categoria_atuacao', // custom tax
'field' => 'term_id', // filter the tax by...
'terms' => 10 // tax id
)
)
));
?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment