Make WordPress Core

Ticket #26961: 26961.diff

File 26961.diff, 873 bytes (added by obenland, 11 years ago)
  • wp-content/themes/twentyfourteen/inc/widgets.php

     
    102102                        </h1>
    103103                        <ol>
    104104
    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                                ?>
    106111                                <li>
    107112                                <article <?php post_class(); ?>>
    108113                                        <div class="entry-content">
     
    194199                        // Reset the post globals as this query will have stomped on it.
    195200                        wp_reset_postdata();
    196201
     202                        $GLOBALS['more']          = $tmp_more;
    197203                        $GLOBALS['content_width'] = $tmp_content_width;
    198204
    199205                endif; // End check for ephemeral posts.