'main', 'render' => 'agency_x_infinite_scroll_render', 'footer' => 'page', ) ); } // end function agency_x_jetpack_setup add_action( 'after_setup_theme', 'agency_x_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function agency_x_infinite_scroll_render() { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content', get_post_format() ); } } // end function agency_x_infinite_scroll_render