• Hi,

    I would like to increase the number of ‘Read Next’ related posts from 3 to 5. Is there a way to do that across the site?

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

Viewing 1 replies (of 1 total)
  • dongho

    (@dongho)

    Hello, maybe late but still useful yet. Two solutions

    A. A quick and (very) dirty is to open function.php
    Go to wp-content/themes/rowling/functions.php.
    Find RELATED POSTS FUNCTION (line 204) and you will see next

    if ( ! function_exists( 'rowling_related_posts' ) ) :
    	function rowling_related_posts( $number_of_posts = 3 ) { 
    		?>

    Change $number_of_posts = 3 to 5. Note that it will be overwritten when the theme will be updated and you will lose the changes you made.

    B. Create a child theme, create a function.php and copy and paste the part dedicated to the related posts function, with the changed $number_of_posts = 5.

    Hope that helps

Viewing 1 replies (of 1 total)
  • The topic ‘Can you increase the number of ‘Read Next’ related posts in Rowling theme’ is closed to new replies.