santiago-c
12/16/2019 - 5:57 PM

WP Remove Sticky Option




// function to remove sticky from queries
add_filter( 'pre_get_posts', function( $query ) {
    if ( ! is_admin() && $query->is_main_query() ) {
        $query->set( 'ignore_sticky_posts', 1 );
    }
} );