Make WordPress Core

Ticket #36239: 36239.diff

File 36239.diff, 801 bytes (added by desrosj, 4 years ago)
  • src/wp-includes/theme-compat/embed-content.php

     
    3939                        $meta = wp_get_attachment_metadata( $thumbnail_id );
    4040                        if ( ! empty( $meta['sizes'] ) ) {
    4141                                foreach ( $meta['sizes'] as $size => $data ) {
    42                                         if ( $data['height'] > 0 && $data['width'] / $data['height'] > $aspect_ratio ) {
     42                                        if ( $data['height'] > 0 && ( $data['height'] > 150 || $data['width'] > 150 ) && $data['width'] / $data['height'] > $aspect_ratio ) {
    4343                                                $aspect_ratio = $data['width'] / $data['height'];
    4444                                                $measurements = array( $data['width'], $data['height'] );
    4545                                                $image_size   = $size;