diff options
Diffstat (limited to 'themes/twentysixteen/index.php')
-rw-r--r-- | themes/twentysixteen/index.php | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/themes/twentysixteen/index.php b/themes/twentysixteen/index.php index d31ef2f8..3f621abe 100644 --- a/themes/twentysixteen/index.php +++ b/themes/twentysixteen/index.php @@ -29,8 +29,7 @@ get_header(); ?> <?php // Start the loop. - while ( have_posts() ) : - the_post(); + while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. @@ -39,19 +38,17 @@ get_header(); ?> */ get_template_part( 'template-parts/content', get_post_format() ); - // End the loop. + // End the loop. endwhile; // Previous/next page navigation. - the_posts_pagination( - array( - 'prev_text' => __( 'Previous page', 'twentysixteen' ), - 'next_text' => __( 'Next page', 'twentysixteen' ), - 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>', - ) - ); + the_posts_pagination( array( + 'prev_text' => __( 'Previous page', 'twentysixteen' ), + 'next_text' => __( 'Next page', 'twentysixteen' ), + 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>', + ) ); - // If no content, include the "No posts found" template. + // If no content, include the "No posts found" template. else : get_template_part( 'template-parts/content', 'none' ); |