File: /home/nakedfoamlojoweb/public_html/wp-content/themes/lojo-theme/includes/jetpack.php
<?php
/**
 * Jetpack Compatibility File
 * See: http://jetpack.me/
 *
 * @package _tl
 */
/**
 * Add theme support for Infinite Scroll.
 * See: http://jetpack.me/support/infinite-scroll/
 */
function _tl_jetpack_setup() {
	if ( function_exists( 'add_theme_support' ) ) {
		add_theme_support( 'infinite-scroll', array(
			'container' => 'content',
			'footer'    => 'page',
		) );
	}
}
add_action( 'after_setup_theme', '_tl_jetpack_setup' );