Guest User

Untitled

a guest
Aug 31st, 2015
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1.  
  2. if( !function_exists( 'marstheme_excluding_the_category_on_homepage' ) ){
  3.     function marstheme_excluding_the_category_on_homepage( $query ) {
  4.         if ( $query->is_home() && $query->is_main_query() ) {
  5.             $category_id = ''; // change your category id here.
  6.             $query->set( 'category__not_in', array( $category_id ) );
  7.         }
  8.     }
  9.     add_action( 'pre_get_posts' , 'marstheme_excluding_the_category_on_homepage', 10, 1);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment