Skip to content

Instantly share code, notes, and snippets.

@digitalhydra
Created December 1, 2017 22:53
Show Gist options
  • Save digitalhydra/56735fd640e0f6964eed3bb638ce8b97 to your computer and use it in GitHub Desktop.
Save digitalhydra/56735fd640e0f6964eed3bb638ce8b97 to your computer and use it in GitHub Desktop.
search by taxonomie
query_posts( array( 'post_type' => 'myportfoliotype', 'paged' => $paged, 'posts_per_page' => 80,
'tax_query' => array(
array(
'taxonomy' => 'categories', //or tag or custom taxonomy
'field' => 'id',
'terms' => array('9', '13')
)
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment