'main', 'render' => 'sabino_infinite_scroll_render', 'footer' => 'page', ) ); } // end function sabino_jetpack_setup add_action( 'after_setup_theme', 'sabino_jetpack_setup' ); function sabino_infinite_scroll_render() { while ( have_posts() ) { the_post(); get_template_part( 'templates/contents/content' ); } } // end function sabino_infinite_scroll_render