Skip to content

Instantly share code, notes, and snippets.

@aksamitnaya
Created May 31, 2018 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aksamitnaya/b76e5e29f92687f872a46e2ed5fedbf4 to your computer and use it in GitHub Desktop.
Save aksamitnaya/b76e5e29f92687f872a46e2ed5fedbf4 to your computer and use it in GitHub Desktop.
add_filter( 'cherry_customizer_get_image_types', 'monstroid2_cherry_customizer_add_svg_mime_type' );
function monstroid2_cherry_customizer_add_svg_mime_type( $mimes = array() ) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment