Files
medicalalert-web-reloaded/wp/wp-content/themes/thbusiness/inc/jetpack.php
Rachit Bhargava 5d0f0734d8 first commit
2023-07-21 17:12:10 -04:00

20 lines
423 B
PHP

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