achille-press/inc/jetpack.php
2013-07-30 12:12:45 -07:00

19 lines
380 B
PHP

<?php
/**
* Jetpack Compatibility File
* See: http://jetpack.me/
*
* @package _s
*/
/**
* Add theme support for Infinite Scroll.
* See: http://jetpack.me/support/infinite-scroll/
*/
function _s_jetpack_setup() {
add_theme_support( 'infinite-scroll', array(
'container' => 'main',
'footer' => 'page',
) );
}
add_action( 'after_setup_theme', '_s_jetpack_setup' );