Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created April 7, 2022 19:56
Show Gist options
  • Select an option

  • Save nathaningram/a914915f60d74acfc089b3d86eec8179 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/a914915f60d74acfc089b3d86eec8179 to your computer and use it in GitHub Desktop.
Enable SVG Uploads in Beaver Builder Modules
// Enable SVG Uploads in Beaver Builder Modules
add_filter( 'fl_module_upload_regex', function( $regex, $type, $ext, $file ) {
$regex['photo'] = '#(jpe?g|png|gif|bmp|tiff?|svg)#i';
return $regex;
}, 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment