Guest User

Untitled

a guest
Oct 12th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. function excludecategory($query) {
  4. if(is_feed()) {
  5. $query->set('cat','-1'); // カテゴリーIDの前に-をつける
  6. return $query;
  7. }
  8. }
  9.  
  10. add_filter('pre_get_posts', 'excludecategory');
Add Comment
Please, Sign In to add comment