Site logo

Archived topic

Page Header - Recent Post

4 replies · Started by Sofe on August 30, 2016

Viewing posts 1–5 of 5

Hi Tom!

How do I pull in the most recent post to my Page Header? I want something similar to this website https://caribecampo.com/, but with the full width to show the most recent post and underneath to split into the two columns.

Appreciate your help in advance!

This is helpful!

Is there anyway then to hide that first post underneath where the normal posts begin?

Best,
Sofe

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;
}
This archived topic is closed to new replies.