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

19 lines
370 B
PHP

<?php
/**
* Infinite Scroll Support
* See: http://jetpack.me/support/infinite-scroll/
*
* Theme Name: _s
*/
/**
* Add theme support for Infinite Scroll.
*/
function _s_infinite_scroll_init() {
add_theme_support( 'infinite-scroll', array(
'container' => 'content',
'footer' => 'page',
) );
}
add_action( 'after_setup_theme', '_s_infinite_scroll_init' );