Media: when making images responsive, check if they already have a `sizes` attribute.
Adds unit test. Props jaspermdegroot. Fixes #34678. Built from https://develop.svn.wordpress.org/trunk@35678 git-svn-id: http://core.svn.wordpress.org/trunk@35642 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f2e9e98fa6
commit
13ea469061
|
@ -1205,7 +1205,7 @@ function wp_make_content_images_responsive( $content ) {
|
|||
$selected_images = $attachment_ids = array();
|
||||
|
||||
foreach( $images as $image ) {
|
||||
if ( false === strpos( $image, ' srcset="' ) && preg_match( '/wp-image-([0-9]+)/i', $image, $class_id ) &&
|
||||
if ( false === strpos( $image, ' srcset=' ) && preg_match( '/wp-image-([0-9]+)/i', $image, $class_id ) &&
|
||||
( $attachment_id = absint( $class_id[1] ) ) ) {
|
||||
|
||||
/*
|
||||
|
@ -1302,15 +1302,24 @@ function wp_image_add_srcset_and_sizes( $image, $image_meta, $attachment_id ) {
|
|||
$srcset = wp_calculate_image_srcset( $size_array, $image_src, $image_meta, $attachment_id );
|
||||
|
||||
if ( $srcset ) {
|
||||
// Check if there is already a 'sizes' attribute.
|
||||
$sizes = strpos( $image, ' sizes=' );
|
||||
|
||||
if ( ! $sizes ) {
|
||||
$sizes = wp_calculate_image_sizes( $size_array, $image_src, $image_meta, $attachment_id );
|
||||
}
|
||||
}
|
||||
|
||||
if ( $srcset && $sizes ) {
|
||||
// Format the 'srcset' and 'sizes' string and escape attributes.
|
||||
$srcset_and_sizes = sprintf( ' srcset="%s" sizes="%s"', esc_attr( $srcset ), esc_attr( $sizes ) );
|
||||
$attr = sprintf( ' srcset="%s"', esc_attr( $srcset ) );
|
||||
|
||||
if ( is_string( $sizes ) ) {
|
||||
$attr .= sprintf( ' sizes="%s"', esc_attr( $sizes ) );
|
||||
}
|
||||
|
||||
// Add 'srcset' and 'sizes' attributes to the image markup.
|
||||
$image = preg_replace( '/<img ([^>]+?)[\/ ]*>/', '<img $1' . $srcset_and_sizes . ' />', $image );
|
||||
$image = preg_replace( '/<img ([^>]+?)[\/ ]*>/', '<img $1' . $attr . ' />', $image );
|
||||
}
|
||||
|
||||
return $image;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-beta4-35677';
|
||||
$wp_version = '4.4-beta4-35678';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue