Reply To: Page Header – Recent Post

Home Forums Support Page Header – Recent Post Reply To: Page Header – Recent Post

Home Forums Support Page Header – Recent Post Reply To: Page Header – Recent Post

#224836
Tom
Lead Developer
Lead Developer

Not very easily – probably a better idea to exclude the post in one of the plugins above.

If you really wanted to try, something like this might do it:

add_action( 'pre_get_posts', 'custom_filter_posts' );
function custom_filter_posts( $query ) {
    $query->set( 'offset', '1' );
    return $query;
}