Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Created March 15, 2017 14:06
Show Gist options
  • Save marcosnakamine/356ed2ff8d5e54ee1d73b3431cd13076 to your computer and use it in GitHub Desktop.
Save marcosnakamine/356ed2ff8d5e54ee1d73b3431cd13076 to your computer and use it in GitHub Desktop.
WordPress - Get all custom posts of custom taxonomy
<?php
$query = new WP_Query(array(
'post_type' => 'custom_post',
'tax_query' => array(
array(
'taxonomy' => 'custom_taxonomy',
'field' => 'slug',
'terms' => 'taxonomy-slug'
)
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment