Created
August 27, 2015 08:52
-
-
Save maxchene/bc5288d11b6f6d6a9949 to your computer and use it in GitHub Desktop.
Allow Inline SVG in wordpress editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
doesn't work