diff --git a/wp-content/themes/twentyeleven/content-gallery.php b/wp-content/themes/twentyeleven/content-gallery.php index 9976cf10ea..79961e8c93 100644 --- a/wp-content/themes/twentyeleven/content-gallery.php +++ b/wp-content/themes/twentyeleven/content-gallery.php @@ -30,25 +30,21 @@
→', 'twentyeleven' ) ); ?> - - - $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); - if ( $images ) : - $total_images = count( $images ); - $image = array_shift( $images ); - $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' ); - ?> - +

%2$s photo.', 'This gallery contains %2$s photos.', $total_images, 'twentyeleven' ), 'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"', number_format_i18n( $total_images ) ); ?>

- + '' ) ); ?> diff --git a/wp-content/themes/twentyeleven/functions.php b/wp-content/themes/twentyeleven/functions.php index aed278bab2..e34f15f442 100644 --- a/wp-content/themes/twentyeleven/functions.php +++ b/wp-content/themes/twentyeleven/functions.php @@ -626,3 +626,43 @@ function twentyeleven_body_classes( $classes ) { return $classes; } add_filter( 'body_class', 'twentyeleven_body_classes' ); + +/** + * Retrieves the IDs for images in a gallery. + * + * @uses get_post_galleries() first, if available. Falls back to shortcode parsing, + * then as last option uses a get_posts() call. + * + * @since Twenty Eleven 1.6. + * + * @return array List of image IDs from the post gallery. + */ +function twentyeleven_get_gallery_images() { + $images = array(); + + if ( function_exists( 'get_post_gallery_images' ) ) { + $galleries = get_post_galleries(); + if ( isset( $galleries[0]['ids'] ) ) + $images = explode( ',', $galleries[0]['ids'] ); + } else { + $pattern = get_shortcode_regex(); + preg_match( "/$pattern/s", get_the_content(), $match ); + $atts = shortcode_parse_atts( $match[3] ); + if ( isset( $atts['ids'] ) ) + $images = explode( ',', $atts['ids'] ); + } + + if ( ! $images ) { + $images = get_posts( array( + 'fields' => 'ids', + 'numberposts' => 999, + 'order' => 'ASC', + 'orderby' => 'menu_order', + 'post_mime_type' => 'image', + 'post_parent' => get_the_ID(), + 'post_type' => 'attachment', + ) ); + } + + return $images; +}