This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/inc/jetpack.php

20 lines
383 B
PHP
Raw Normal View History

<?php
/**
* Jetpack Compatibility File
* See: http://jetpack.me/
*
2013-02-25 07:15:14 +00:00
* @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' => 'content',
'footer' => 'page',
) );
}
add_action( 'after_setup_theme', '_s_jetpack_setup' );