хотя сделал инициализацию повторно,но это убирает редактор вообще
egocreo.webalgoritm.tmweb.ru/mikroblog
<script>
jQuery(document).ready(function () {
function init_editors() {
jQuery.each( jQuery('.wp-editor-area'), function( i, editor ) {
var editor_id = jQuery(editor).attr('id');
wp.editor.remove(editor_id);
wp.editor.initialize(
editor_id,
{
tinymce: {
wpautop: true,
plugins : 'charmap colorpicker compat3x directionality fullscreen hr image lists media paste tabfocus textcolor wordpress wpautoresize wpdialogs wpeditimage wpemoji wpgallery wplink wptextpattern wpview',
toolbar1: 'bold italic underline strikethrough | bullist numlist | blockquote hr wp_more | alignleft aligncenter alignright | link unlink | fullscreen | wp_adv',
toolbar2: 'formatselect alignjustify forecolor | pastetext removeformat charmap | outdent indent | undo redo | wp_help'
},
mediaButtons: true,
}
);
});
}
init_editors();
jQuery('.comment-reply-link').click(setTimeout(init_editors}, 10));
});
</script>