Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save AngeliMae/10a521f3a30e63ed3e74b3379a4acc50 to your computer and use it in GitHub Desktop.
UM Social Activity & Groups discussions - WebP
// Social Activity & Groups discussions
add_filter("um_social_activity_allowed_image_types","um_010223_social_activty_allowed_webp_image_type", 10, 1 );
add_filter("um_groups_discussion_allowed_image_types","um_010223_social_activty_allowed_webp_image_type", 10, 1 );
function um_010223_social_activty_allowed_webp_image_type( $types ){
$types[ ] = "webp";
return $types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment