Skip to content

Instantly share code, notes, and snippets.

@AngeliMae
Created January 2, 2023 14:57
Show Gist options
  • Select an option

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

Select an option

Save AngeliMae/a6c79fd595831b08ae8bcb6fd3e94b9b to your computer and use it in GitHub Desktop.
allowed image types in field option for Image field
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