Advertisement
scaryuncledevin

Wordpress filter posts with custom post type

Aug 14th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. global $query_string;
  3. query_posts(
  4.     array_merge(
  5.         wp_parse_args($query_string),
  6.         array(
  7.             'post_type' => array('post','CUSTOM_POST_TYPE_GOES_HERE')
  8.         )
  9.     )
  10. );
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement