CodeHQ

Posts Tagged ‘Media support’

|

Adding SVG support to WordPress

Friday, May 20th, 2016

Add to functions.php

function cc_mime_types( $mimes ){
	$mimes['svg'] = 'image/svg+xml';
	return $mimes;
}
add_filter( 'upload_mimes', 'cc_mime_types' );

Tags: , , ,
Posted in PHP, WordPress | No Comments »