Advertisement
Konark

Untitled

Jan 8th, 2020
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'exclude_category' );
  2. function exclude_category( $query ) {
  3. if ( $query->is_front_page() && $query->is_main_query() ) {
  4. $query->set( 'cat', '-90,-91,-206,-212,-208,-210,-209,-211,-207,-266,-267,-270,-272' );
  5. }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement