diff --git a/src/wp-content/themes/twentyfourteen/inc/widgets.php b/src/wp-content/themes/twentyfourteen/inc/widgets.php index f78effedb3..1e8b484ea1 100644 --- a/src/wp-content/themes/twentyfourteen/inc/widgets.php +++ b/src/wp-content/themes/twentyfourteen/inc/widgets.php @@ -102,7 +102,12 @@ class Twenty_Fourteen_Ephemera_Widget extends WP_Widget {
    - have_posts() ) : $ephemera->the_post(); ?> + have_posts() ) : + $ephemera->the_post(); + $tmp_more = $GLOBALS['more']; + $GLOBALS['more'] = 0; + ?>
  1. >
    @@ -194,6 +199,7 @@ class Twenty_Fourteen_Ephemera_Widget extends WP_Widget { // Reset the post globals as this query will have stomped on it. wp_reset_postdata(); + $GLOBALS['more'] = $tmp_more; $GLOBALS['content_width'] = $tmp_content_width; endif; // End check for ephemeral posts.