Advertisement
rdusnr

Untitled

May 30th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. function exclude_category($query) {
  2.  
  3.     if(pmpro_hasMembershipLevel()) {
  4.  
  5.         if(is_home()){
  6.  
  7.             $query->set('cat', '-90,-125,-135');
  8.         }
  9.            
  10.         return $query;
  11.     }
  12.  
  13. }
  14.  
  15. add_filter('pre_get_posts', 'exclude_category');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement