Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created June 15, 2017 07:48
Show Gist options
  • Save qwersk/bbdfa87b4d71d296c986e4b9d4d5f6d6 to your computer and use it in GitHub Desktop.
Save qwersk/bbdfa87b4d71d296c986e4b9d4d5f6d6 to your computer and use it in GitHub Desktop.
GET SUBCATEGORY ITEMS FROM CUSTOM TAXONOMY #WP #WORDPRESS
$publicationsWithoutTerms = new WP_Query(array(
'post_type' => 'doc',
'tax_query' => array(array(
'taxonomy' => 'category',
'field' => 'term_id',
'operator' => 'NOT IN',
'terms' => get_terms('category', array(
'fields' => 'ids'
))
))
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment