Specify correct post templates for jetpack infinite scroll.
This commit is contained in:
parent
6103e6d5e7
commit
0014477b9c
|
@ -37,9 +37,9 @@ function components_infinite_scroll_render() {
|
||||||
while ( have_posts() ) {
|
while ( have_posts() ) {
|
||||||
the_post();
|
the_post();
|
||||||
if ( is_search() ) :
|
if ( is_search() ) :
|
||||||
get_template_part( 'components/post/content', 'search' );
|
get_template_part( 'loop-templates/content', 'search' );
|
||||||
else :
|
else :
|
||||||
get_template_part( 'components/post/content', get_post_format() );
|
get_template_part( 'loop-templates/content', get_post_format() );
|
||||||
endif;
|
endif;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue