Ticket #26961: 26961.diff
File 26961.diff, 873 bytes (added by , 11 years ago) |
---|
-
wp-content/themes/twentyfourteen/inc/widgets.php
102 102 </h1> 103 103 <ol> 104 104 105 <?php while ( $ephemera->have_posts() ) : $ephemera->the_post(); ?> 105 <?php 106 while ( $ephemera->have_posts() ) : 107 $ephemera->the_post(); 108 $tmp_more = $GLOBALS['more']; 109 $GLOBALS['more'] = 0; 110 ?> 106 111 <li> 107 112 <article <?php post_class(); ?>> 108 113 <div class="entry-content"> … … 194 199 // Reset the post globals as this query will have stomped on it. 195 200 wp_reset_postdata(); 196 201 202 $GLOBALS['more'] = $tmp_more; 197 203 $GLOBALS['content_width'] = $tmp_content_width; 198 204 199 205 endif; // End check for ephemeral posts.