This issue is happening for me as well. I get a response of {“type”: “empty”} from the infinite scroll. Here is the code that my site uses:
function the_style_infinite_scroll_init() {
add_theme_support( 'infinite-scroll', array(
'container' => 'boxes',
'render' => 'the_style_infinite_scroll_render',
'footer_widgets' => array ('Footer'),
'type' => 'scroll'
) );
}
add_action( 'init', 'the_style_infinite_scroll_init' );
function the_style_infinite_scroll_render() {
get_template_part( 'entry' );
}
You can visit talkorm.com to see what I mean. Just scroll to the bottom of the page and check your requests in your browser’s debug.