Advertisement
afsarwebdev

WP exclude certain / specific category from custom post type

Jun 6th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //Exclude certain category from custom post type
  2. $movies = new WP_Query(array(
  3. "post_type" => "movie",
  4. "posts_per_page" => -1,
  5. "order" => "ASC",
  6. 'tax_query' => array(
  7. array (
  8. 'taxonomy' => 'movie-cat',
  9. 'terms' => 'feature',
  10. 'field' => 'slug',
  11. 'include_children' => true,
  12. 'operator' => 'NOT IN'
  13. )
  14. ),
  15. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement