mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
11 lines
305 B
Text
11 lines
305 B
Text
function smartwp_enable_svg_upload( $mimes ) {
|
|
//Only allow SVG upload by admins
|
|
if ( !current_user_can( 'administrator' ) ) {
|
|
return $mimes;
|
|
}
|
|
$mimes['svg'] = 'image/svg+xml';
|
|
$mimes['svgz'] = 'image/svg+xml';
|
|
|
|
return $mimes;
|
|
}
|
|
add_filter('upload_mimes', 'smartwp_enable_svg_upload');
|