Created
January 2, 2023 14:57
-
-
Save AngeliMae/a6c79fd595831b08ae8bcb6fd3e94b9b to your computer and use it in GitHub Desktop.
allowed image types in field option for Image field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter("um_allowed_image_types","um_010223_default_allowed_image_types"); | |
| function um_010223_default_allowed_image_types( $types ){ | |
| $types['webp'] = 'WEBP'; | |
| return $types; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment