• Resolved horrorreport

    (@horrorreport)


    I am not able to add infinite scrolling.
    Is there code I can add somewhere that infinite scrolling can be added either on the main page or the search results pages Or Both.

Viewing 1 replies (of 1 total)
  • 1. Make a child theme
    2. Make a file called functions.php in your child theme
    3. Put the following into functions.php

    <?php
    
    function my_infinite_scroll() {
    add_theme_support( 'infinite-scroll', array(
        'container' => 'posts',
        'wrapper' => true,
        'footer' => false,
        'posts_per_page' => 10,
    ) );
    }
    add_action( 'after_setup_theme', 'my_infinite_scroll');
    
    ?>

    footer can be set to either false or true. Try both and see which you like better.

Viewing 1 replies (of 1 total)
  • The topic ‘Infinite Scrolling with Jetpack’ is closed to new replies.