Media: Allow the `gallery_shortcode()` and `get_image_tag()` functions to correctly accept an array of image dimensions.
These functions did previously accept an array of image dimensions but their class attributes were not properly constructed. Fixes #51362 Built from https://develop.svn.wordpress.org/trunk@49128 git-svn-id: http://core.svn.wordpress.org/trunk@48890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e11accb411
commit
33070fb7d2
|
@ -377,7 +377,8 @@ function get_image_tag( $id, $alt, $title, $align, $size = 'medium' ) {
|
|||
|
||||
$title = $title ? 'title="' . esc_attr( $title ) . '" ' : '';
|
||||
|
||||
$class = 'align' . esc_attr( $align ) . ' size-' . esc_attr( $size ) . ' wp-image-' . $id;
|
||||
$size_class = is_array( $size ) ? implode( 'x', $size ) : $size;
|
||||
$class = 'align' . esc_attr( $align ) . ' size-' . esc_attr( $size_class ) . ' wp-image-' . $id;
|
||||
|
||||
/**
|
||||
* Filters the value of the attachment's image tag class attribute.
|
||||
|
@ -2334,7 +2335,7 @@ function gallery_shortcode( $attr ) {
|
|||
</style>\n\t\t";
|
||||
}
|
||||
|
||||
$size_class = sanitize_html_class( $atts['size'] );
|
||||
$size_class = sanitize_html_class( is_array( $atts['size'] ) ? implode( 'x', $atts['size'] ) : $atts['size'] );
|
||||
$gallery_div = "<div id='$selector' class='gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}'>";
|
||||
|
||||
/**
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6-alpha-49127';
|
||||
$wp_version = '5.6-alpha-49128';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue