Im trying to find this file to change the original entity_encoding to this:
tinymce.init({
...
entity_encoding : "raw"
});
WordPress Version 3.6.1
TinyMCE Advanced Version 3.5.8
Im trying to find this file to change the original entity_encoding to this:
tinymce.init({
...
entity_encoding : "raw"
});
WordPress Version 3.6.1
TinyMCE Advanced Version 3.5.8
You must be logged in to post a comment.
You can see the default settings in
/wp-includes/class-wp-editor.php
but you should not do this, don’t modifycore
files, instead, you can use tiny_mce_before_init hook and modify default settings in the callback function, using something like thisCheck this example on Codex and this may help you too.