Skip to content

Instantly share code, notes, and snippets.

@AngeliMae
Last active January 2, 2023 16:41
Show Gist options
  • Select an option

  • Save AngeliMae/dc1b5bfac5bd68ad187ada8f1001e767 to your computer and use it in GitHub Desktop.

Select an option

Save AngeliMae/dc1b5bfac5bd68ad187ada8f1001e767 to your computer and use it in GitHub Desktop.
UM User Photos Extension - WebP Image File
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