Make WordPress Core

Ticket #34807: 34807.1.patch

File 34807.1.patch, 1.6 KB (added by azaozz, 8 years ago)
  • src/wp-includes/media.php

     
    12061206 * @return string Converted content with 'srcset' and 'sizes' attributes added to images.
    12071207 */
    12081208function 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        }
    12101212
    12111213        $selected_images = $attachment_ids = array();
    12121214
    1213         foreach( $images as $image ) {
     1215        foreach( $matches[0] as $image ) {
    12141216                if ( false === strpos( $image, ' srcset=' ) && preg_match( '/wp-image-([0-9]+)/i', $image, $class_id ) &&
    12151217                        ( $attachment_id = absint( $class_id[1] ) ) ) {
    12161218
     
    35063508         * Filter the embedded media types that are allowed to be returned from the content blob.
    35073509         *
    35083510         * @since 4.2.0
    3509          * @since 4.4.0 Added 'img' to the allowed types.
    35103511         *
    35113512         * @param array $allowed_media_types An array of allowed media types. Default media types are
    3512          *                                   'audio', 'video', 'object', 'embed', 'iframe', and 'img'.
     3513         *                                   'audio', 'video', 'object', 'embed', and 'iframe'.
    35133514         */
    3514         $allowed_media_types = apply_filters( 'media_embedded_in_content_allowed_types', array( 'audio', 'video', 'object', 'embed', 'iframe', 'img' ) );
     3515        $allowed_media_types = apply_filters( 'media_embedded_in_content_allowed_types', array( 'audio', 'video', 'object', 'embed', 'iframe' ) );
    35153516
    35163517        if ( ! empty( $types ) ) {
    35173518                if ( ! is_array( $types ) ) {