From 2e4d128fe0cd7f883ee45b0e7f4e9ba0faa9a028 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 8 Mar 2013 16:13:15 +0000 Subject: [PATCH] Add orientation information to gallery items. props obenland. fixes #23695. git-svn-id: http://core.svn.wordpress.org/trunk@23649 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index c543389a97..9ef641cd3f 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -778,10 +778,12 @@ function gallery_shortcode($attr) { $i = 0; foreach ( $attachments as $id => $attachment ) { $link = isset($attr['link']) && 'file' == $attr['link'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false); + $image_meta = wp_get_attachment_metadata( $id ); + $orientation = ( $image_meta['height'] > $image_meta['width'] ) ? 'portrait' : 'landscape'; $output .= "<{$itemtag} class='gallery-item'>"; $output .= " - <{$icontag} class='gallery-icon'> + <{$icontag} class='gallery-icon {$orientation}'> $link "; if ( $captiontag && trim($attachment->post_excerpt) ) {