Created
January 28, 2021 15:08
-
-
Save carmolim/a7081c1425e1be15861f8cd34be12deb to your computer and use it in GitHub Desktop.
query pela taxonomia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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