diff --git a/wp-admin/includes/image.php b/wp-admin/includes/image.php index b78bac2a56..5fc7161e4f 100644 --- a/wp-admin/includes/image.php +++ b/wp-admin/includes/image.php @@ -401,6 +401,12 @@ function wp_read_image_metadata( $file ) { } } + foreach ( $meta as &$value ) { + if ( is_string( $value ) ) { + $value = wp_kses_post( $value ); + } + } + /** * Filter the array of meta data read from an image's exif data. *