TinyMCE未在WordPress上定义

时间:2019-03-04 14:26:15

标签: javascript wordpress tinymce

我有一个控制台错误,提示未捕获ReferenceError:未定义tinymce,我真的不知道该如何解决。它表示错误在下面的javascript文件中:

(function() {
	
	"use strict";

       tinymce.PluginManager.add('wdm_mce_button', function( editor, url ) {
           editor.addButton('wdm_mce_button', {
                       text: 'Team',
                       icon: false,
                       onclick: function() {
                         // change the shortcode as per your requirement
                          editor.insertContent('[team_section]');
                      }
             });
                      editor.addButton('services', {
                       text: 'Services',
                       icon: false,
                       onclick: function() {
                         // change the shortcode as per your requirement
                          editor.insertContent('[services_section]');
                      }
             });
       });
})();

因此,错误应该在“ tinymce.PluginManager.add”行中。我必须提到,这段代码是在wordpress上运行的,我用它在经典编辑器中添加了一些按钮。我正在等待一些帮助。

谢谢!

0 个答案:

没有答案