// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
themes
/
resi
/
inc
[ PARENT ]
EDIT :: jetpack.php
<?php /** * Jetpack Compatibility File. * * @link https://jetpack.me/ * * @package resi */ /** * Add theme support for Infinite Scroll. * See: https://jetpack.me/support/infinite-scroll/ */ function resi_jetpack_setup() { add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'render' => 'resi_infinite_scroll_render', 'footer' => 'page', ) ); } // end function resi_jetpack_setup add_action( 'after_setup_theme', 'resi_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function resi_infinite_scroll_render() { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content', get_post_format() ); } } // end function resi_infinite_scroll_render
SAVE
CANCEL