Site logo

[Resolved] Blog posts with offset 4

Home Forums Support [Resolved] Blog posts with offset 4

Home Forums Support Blog posts with offset 4

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2405379
    Stefan

    Hello Support Team, I would like to hide the latest 4 blog posts. How would that be possible?

    https://stories4brands-2.fairwilly.dev/blog/

    Many greetings
    Stefan

    #2405410
    Ying
    Staff
    Customer Support

    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/

    #2405666
    Stefan

    Perfekt! Thank you.

    #2406755
    Ying
    Staff
    Customer Support

    No problem 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.