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