如何从tinymce中移除底部链接?

如何从tinymce中移除底部链接?,tinymce,Tinymce,我想从tinymce中删除标记 tinyMCE.init({ ... theme_advanced_statusbar_location : "bottom", theme_advanced_path : false, theme_advanced_resizing : true }); 请参阅下图: 使用jQuery,您可以将设置配置参数添加到tinymce配置中,如下所示 setup : function(ed) { ed.on('init', function(evt) {

我想从tinymce中删除标记

tinyMCE.init({
...
theme_advanced_statusbar_location : "bottom",
theme_advanced_path : false,
theme_advanced_resizing : true
});
请参阅下图:

使用jQuery,您可以将设置配置参数添加到tinymce配置中,如下所示

setup : function(ed) {

  ed.on('init', function(evt)
  {
    $('#'+ed.id+'_path_row').hide();
  });
},