Reply To: Front Page Max # Posts affecting Widget Recent Posts count

Homepage Community Forums Ambition Front Page Max # Posts affecting Widget Recent Posts count Reply To: Front Page Max # Posts affecting Widget Recent Posts count

#19387
Rob
Customer

    well shoot. I did that I guess.

    /** reduce number of posts on homepage **/
    add_action( ‘pre_get_posts’, ‘set_posts_per_page’ );
    function set_posts_per_page( $query ) {

    if ( is_home() )
    $query->set( ‘posts_per_page’, 2 );

    return $query;
    }

    I only want 2 posts to show on front page, but it’s affecting the widget area too.

    Shoot.