Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cobaltapps/ae78cd3b5ac9446c94cd37a2ebd4608c to your computer and use it in GitHub Desktop.
Save cobaltapps/ae78cd3b5ac9446c94cd37a2ebd4608c to your computer and use it in GitHub Desktop.
Missing exif_imagetype function fix.
if ( ! function_exists( 'exif_imagetype' ) ) {
function exif_imagetype( $filename ) {
if ( ( list( $width, $height, $type, $attr ) = getimagesize( $filename ) ) !== false )
return $type;
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment