Add `size-$size` class to `<img>` in `wp_get_attachment_image()`.
Fixes #32093. Built from https://develop.svn.wordpress.org/trunk@34629 git-svn-id: http://core.svn.wordpress.org/trunk@34593 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b581489e93
commit
1b6ed5cbb7
|
@ -767,7 +767,7 @@ function wp_get_attachment_image($attachment_id, $size = 'thumbnail', $icon = fa
|
|||
$attachment = get_post($attachment_id);
|
||||
$default_attr = array(
|
||||
'src' => $src,
|
||||
'class' => "attachment-$size_class",
|
||||
'class' => "attachment-$size_class size-$size",
|
||||
'alt' => trim(strip_tags( get_post_meta($attachment_id, '_wp_attachment_image_alt', true) )), // Use Alt field first
|
||||
);
|
||||
if ( empty($default_attr['alt']) )
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34628';
|
||||
$wp_version = '4.4-alpha-34629';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue