Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /* 特定のカテゴリの除外
  2. function exclude_category( $query ) {
  3. if ( $query->is_home() && $query->is_main_query() ) {
  4. $query->set( 'cat', '-8,-9' );//マイナスをつけてカテゴリIDを除外する
  5. }
  6. }
  7. add_action( 'pre_get_posts', 'exclude_category' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement