Advertisement
afsarwebdev

wp specific / certain category display

Jun 6th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. //Specific category show in custom post
  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', //taxonomy name
  9. 'field' => 'slug',
  10. 'terms' => 'feature', //category slug
  11. )
  12. ),
  13. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement