Loading...
「ツール」は右上に移動しました。
利用したサーバー: natural-voltaic-titanium
1いいね 98回再生

WordPress - How To Enable SVG Support To Upload SVG Images

View on website:
scottsweb.dev/enable-svg-support-in-wordpress/

Here's a quick code snippet to enable svg support on wordpress. Place this in functions.php of your theme (or child theme).

/**
Scottsweb.dev
Allow SVG support
*/
function swd_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'swd_mime_types');

コメント