Ticket #34807: 34807.patch
File 34807.patch, 814 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/media.php
1206 1206 * @return string Converted content with 'srcset' and 'sizes' attributes added to images. 1207 1207 */ 1208 1208 function wp_make_content_images_responsive( $content ) { 1209 $images = get_media_embedded_in_content( $content, 'img' ); 1209 if ( ! preg_match_all( '/<img [^>]+>/', $content, $matches ) ) { 1210 return $content; 1211 } 1210 1212 1211 1213 $selected_images = $attachment_ids = array(); 1212 1214 1213 foreach( $ imagesas $image ) {1215 foreach( $matches[0] as $image ) { 1214 1216 if ( false === strpos( $image, ' srcset=' ) && preg_match( '/wp-image-([0-9]+)/i', $image, $class_id ) && 1215 1217 ( $attachment_id = absint( $class_id[1] ) ) ) { 1216 1218