Guest User

Untitled

a guest
Aug 16th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. if( !function_exists( 'marstheme_excluding_sticky_posts' ) ){
  2.     function marstheme_excluding_sticky_posts( $query ) {
  3.         if( !is_admin() && $query->is_main_query() ){
  4.             $query->set( 'ignore_sticky_posts', true );
  5.         }
  6.     }
  7.     add_action( 'pre_get_posts' , 'marstheme_excluding_sticky_posts', 10, 1);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment