kalponikoronno

exclude testimonial query from index post

Feb 19th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2. //condition : যদি এই query, category testimonial না হয়, এবং এটি main query হয়, তাহলে testimonial category exclude কর,
  3. //(-5 is testimonial category id) (! means is not)
  4.  
  5. function exclude_testimonials( $query ) {
  6.     if( !$query->is_category('testimonials') && $query->is_main_query()) {
  7.         $query->set('cat', '-5');
  8.     }
  9. }
  10. add_action('pre_get_posts', 'exclude_testimonials');
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment