'main', 'render' => 'allo_infinite_scroll_render', 'footer' => 'page', ) ); } // end function allo_jetpack_setup add_action( 'after_setup_theme', 'allo_jetpack_setup' ); /** * Allo Infinite Scroll Render * * @package Allo * @since 1.0 */ function allo_infinite_scroll_render() { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/post/content', get_post_format() ); } } // end function allo_infinite_scroll_render