'main', 'render' => 'online_shop_infinite_scroll_render', 'footer' => 'page', ) ); } // end function online_shop_jetpack_setup endif; add_action( 'after_setup_theme', 'online_shop_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ if ( ! function_exists( 'online_shop_infinite_scroll_render' ) ) : function online_shop_infinite_scroll_render() { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content', get_post_format() ); } } // end function online_shop_infinite_scroll_render endif;