mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2026-01-09 02:45:48 +00:00
20 lines
410 B
PHP
20 lines
410 B
PHP
<?php
|
|
/**
|
|
* Jetpack Compatibility File
|
|
* See: http://jetpack.me/
|
|
*
|
|
* @package Professional
|
|
*/
|
|
|
|
/**
|
|
* Add theme support for Infinite Scroll.
|
|
* See: http://jetpack.me/support/infinite-scroll/
|
|
*/
|
|
function professional_jetpack_setup() {
|
|
add_theme_support( 'infinite-scroll', array(
|
|
'container' => 'main',
|
|
'footer' => 'page',
|
|
) );
|
|
}
|
|
add_action( 'after_setup_theme', 'professional_jetpack_setup' );
|