Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php if (have_posts()) : ?>
  2. <?php while(have_posts()): the_post(); ?>
  3.  
  4. is_admin() || add_filter( 'posts_search', function( $search )
  5. {
  6. empty ( $search ) || add_filter( 'posts_where_paged', function( $where ) {
  7. return preg_replace(
  8. '~post_type IN ((.*)'page',?~',
  9. 'post_type IN (1',
  10. $where
  11. );
  12. });
  13.  
  14. return $search;
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement