Site logo

Archived topic

Blog posts with offset 4

3 replies · Started by Stefan on November 7, 2022

Viewing posts 1–4 of 4

Hi Stefan,

Try this PHP snippet:

function offset_blog_main_query( $query ) {
    if ( ! is_admin() && $query->is_main_query() &&  is_home()) {	
        $query->set( 'offset', 4);
    }
}
add_action( 'pre_get_posts', 'offset_blog_main_query' );

Adding PHP: https://docs.generatepress.com/article/adding-php/

Perfekt! Thank you.

No problem :)

This archived topic is closed to new replies.