getimagesize_mimes_to_exts
getimagesize_mimes_to_exts
Appears in: wordpress-4.0, wordpress-4.4, wordpress-4.8, wordpress-4.9, wordpress-4.9.4, wordpress-4.9.5, wordpress-4.9.6, wordpress-4.9.7, wordpress-4.9.8, wordpress-5.0, wordpress-5.0.1, wordpress-5.0.2, wordpress-5.0.3
Hook Type: filter
Displaying hooks found in version: wordpress-5.0.3apply_filters('getimagesize_mimes_to_exts') is found 1 times:
- /wp-includes/functions.php line 231723132314231523162317231823192320232123222323
* @since 3.0.0
*
* @param
array
$mime_to_ext
Array of image mime types
and
their matching extensions.
*/
$mime_to_ext
= apply_filters(
'getimagesize_mimes_to_exts'
,
array
(
'image/jpeg'
=>
'jpg'
,
'image/png'
=>
'png'
,
'image/gif'
=>
'gif'
,
'image/bmp'
=>
'bmp'
,
'image/tiff'
=>
'tif'
,
) );