/home/arranoyd/gazehome/wp-content/themes/uncode/core/inc/jetpack.php
<?php
/**
 * Jetpack Compatibility File
 * See: http://jetpack.me/
 *
 * @package uncode
 */

/**
 * Add theme support for Infinite Scroll.
 * See: http://jetpack.me/support/infinite-scroll/
 */
function uncode_jetpack_setup() {
	add_theme_support( 'infinite-scroll', array(
		'container' => 'main',
		'footer'    => 'page',
	) );
}
add_action( 'after_setup_theme', 'uncode_jetpack_setup' );