Make WordPress Core

Ticket #31260: 31260.patch

File 31260.patch, 2.9 KB (added by SergeyBiryukov, 10 years ago)
  • src/wp-content/themes/twentyeleven/content-gallery.php

     
    3636                                $images = twentyeleven_get_gallery_images();
    3737                                if ( $images ) :
    3838                                        $total_images = count( $images );
    39                                         $image = array_shift( $images );
     39                                        $image = current( $images );
    4040                        ?>
    4141                                <figure class="gallery-thumb">
    4242                                        <a href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $image, 'thumbnail' ); ?></a>
  • src/wp-content/themes/twentyfourteen/functions.php

     
    330330
    331331                // or get the URL of the first image attachment.
    332332                else {
    333                         $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );
     333                        $next_attachment_url = get_attachment_link( current( $attachment_ids ) );
    334334                }
    335335        }
    336336
  • src/wp-content/themes/twentyfourteen/inc/widgets.php

     
    149149                                                                        if ( has_post_thumbnail() ) :
    150150                                                                                $post_thumbnail = get_the_post_thumbnail();
    151151                                                                        elseif ( $total_images > 0 ) :
    152                                                                                 $image          = array_shift( $images );
     152                                                                                $image          = current( $images );
    153153                                                                                $post_thumbnail = wp_get_attachment_image( $image, 'post-thumbnail' );
    154154                                                                        endif;
    155155
  • src/wp-content/themes/twentyten/loop.php

     
    7575                                        $images = twentyten_get_gallery_images();
    7676                                        if ( $images ) :
    7777                                                $total_images = count( $images );
    78                                                 $image = array_shift( $images );
     78                                                $image = current( $images );
    7979                                ?>
    8080                                                <div class="gallery-thumb">
    8181                                                        <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $image, 'thumbnail' ); ?></a>
  • src/wp-content/themes/twentythirteen/functions.php

     
    431431
    432432                // or get the URL of the first image attachment.
    433433                else
    434                         $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );
     434                        $next_attachment_url = get_attachment_link( current( $attachment_ids ) );
    435435        }
    436436
    437437        printf( '<a href="%1$s" title="%2$s" rel="attachment">%3$s</a>',