diff --git a/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php b/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php
index 79e11949b9..4da8f6e75e 100644
a
|
b
|
global $twentyseventeencounter; |
50 | 50 | // Show recent blog posts if is blog posts page (Note that get_option returns a string, so we're casting the result as an int). |
51 | 51 | if ( get_the_ID() === (int) get_option( 'page_for_posts' ) ) : ?> |
52 | 52 | |
53 | | <?php // Show four most recent posts. |
| 53 | <?php // Show three most recent posts. |
54 | 54 | $recent_posts = new WP_Query( array( |
55 | 55 | 'posts_per_page' => 3, |
56 | 56 | 'post_status' => 'publish', |