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