Twenty Ten: improve how gallery image IDs are retrieved for use in the Gallery post format template. Props to obenland for original patch, fixes #23617.
git-svn-id: https://develop.svn.wordpress.org/trunk@23826 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
2d018dd75e
commit
b8aff153c9
@ -514,3 +514,43 @@ function twentyten_posted_in() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 Ten 1.6.
|
||||||
|
*
|
||||||
|
* @return array List of image IDs from the post gallery.
|
||||||
|
*/
|
||||||
|
function twentyten_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;
|
||||||
|
}
|
||||||
|
@ -70,20 +70,19 @@
|
|||||||
<?php the_content(); ?>
|
<?php the_content(); ?>
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<?php
|
<?php
|
||||||
$images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
|
$images = twentyten_get_gallery_images();
|
||||||
if ( $images ) :
|
if ( $images ) :
|
||||||
$total_images = count( $images );
|
$total_images = count( $images );
|
||||||
$image = array_shift( $images );
|
$image = array_shift( $images );
|
||||||
$image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
|
|
||||||
?>
|
?>
|
||||||
<div class="gallery-thumb">
|
<div class="gallery-thumb">
|
||||||
<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
|
<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $image, 'thumbnail' ); ?></a>
|
||||||
</div><!-- .gallery-thumb -->
|
</div><!-- .gallery-thumb -->
|
||||||
<p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
|
<p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
|
||||||
'href="' . get_permalink() . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
|
'href="' . get_permalink() . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
|
||||||
number_format_i18n( $total_images )
|
number_format_i18n( $total_images )
|
||||||
); ?></em></p>
|
); ?></em></p>
|
||||||
<?php endif; ?>
|
<?php endif; // end twentyten_get_gallery_images() check ?>
|
||||||
<?php the_excerpt(); ?>
|
<?php the_excerpt(); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div><!-- .entry-content -->
|
</div><!-- .entry-content -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user