Skip to content

Instantly share code, notes, and snippets.

@tomhemsley
Created December 18, 2014 15:22
Show Gist options
  • Save tomhemsley/73f99c02f860da85733b to your computer and use it in GitHub Desktop.
Save tomhemsley/73f99c02f860da85733b to your computer and use it in GitHub Desktop.
Meta Slider - Allow SVG files
function metaslider_allow_svg( $is_valid, $slide ) {
if ( get_post_mime_type( $slide->ID ) == 'image/svg+xml' ) {
return true;
}
return $is_valid;
}
add_filter('metaslider_is_valid_image', 'metaslider_allow_svg', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment