• Resolved orizelhan

    (@orizelhan)


    hello… how do I add more articles in related posts? normally is 3 but I want to make it 6

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi there,

    You can increase the number of related posts by using the jetpack_relatedposts_filter_options filter.

    You can add the following to your theme’s functions.php file:

    
    <?php 
    
    function jetpackme_more_related_posts( $options ) {
        $options['size'] = 6; 
        return $options;
    }
    add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_more_related_posts' )
    

    Note that the maximum of related posts that Jetpack can display is 6.

    Regards.

    • This reply was modified 2 years, 10 months ago by Daniel.
Viewing 1 replies (of 1 total)
  • The topic ‘ad more related posts’ is closed to new replies.