Skip to content

Instantly share code, notes, and snippets.

@maxchene
Created August 27, 2015 08:52
Show Gist options
  • Save maxchene/bc5288d11b6f6d6a9949 to your computer and use it in GitHub Desktop.
Save maxchene/bc5288d11b6f6d6a9949 to your computer and use it in GitHub Desktop.
Allow Inline SVG in wordpress editor
/**
* functions.php
* add the svg tags you needs
* to the $opts array
**/
function override_mce_options($initArray) {
$opts = ['svg','g','path'];
$initArray['extended_valid_elements'] = $opts;
return $initArray;
}
add_filter('tiny_mce_before_init', 'override_mce_options');
@freelancertanvir
Copy link

doesn't work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment