'primary', 'footer' => false, 'render' => function () { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content', get_post_format() ); } }, ] ); } ); /** * Hide main pagination if using infinite scroll */ add_filter( 'bootswatch_show_posts_navigation', function( $show ) { $using_infinite_scroll = in_array( 'infinite-scroll', get_option( 'jetpack_active_modules', [] ) ); return $using_infinite_scroll ? false : $show; } ); }