Last active
January 2, 2023 16:41
-
-
Save AngeliMae/dc1b5bfac5bd68ad187ada8f1001e767 to your computer and use it in GitHub Desktop.
UM User Photos Extension - WebP Image File
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_user_photos_allowed_image_types","um_user_photos_010223_allowed_webp_image_type", 10, 1); | |
| function um_user_photos_010223_allowed_webp_image_type( $arr_types ){ | |
| $arr_types[ ] = "image/webp"; | |
| return $arr_types; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment