Created
June 15, 2017 07:48
-
-
Save qwersk/bbdfa87b4d71d296c986e4b9d4d5f6d6 to your computer and use it in GitHub Desktop.
GET SUBCATEGORY ITEMS FROM CUSTOM TAXONOMY #WP #WORDPRESS
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
$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