diff --git a/inc/jetpack.php b/inc/jetpack.php index 0d1b5b5a..030b4daf 100644 --- a/inc/jetpack.php +++ b/inc/jetpack.php @@ -32,6 +32,10 @@ add_action( 'after_setup_theme', '_s_jetpack_setup' ); function _s_infinite_scroll_render() { while ( have_posts() ) { the_post(); - get_template_part( 'template-parts/content', get_post_format() ); + if ( is_search() ) : + get_template_part( 'template-parts/content', 'search' ); + else : + get_template_part( 'template-parts/content', get_post_format() ); + endif; } } // end function _s_infinite_scroll_render