如何使用TinyMCE将插件按钮添加到`wp_editor()`中?

时间:2018-10-23 11:10:32

标签: wordpress

我对此问题有两个疑问。 首先:我尝试添加一个插件Symple Shortcodes的按钮。 在这里找到:https://www.wpexplorer.com/symple-shortcodes/

在此插件中,我在symple_shortcodes_tinymce.js上找到了以下代码:

(function() {
    tinymce.PluginManager.add( 'symple_shortcodes_mce_button', function( editor, url ) {
        editor.addButton( 'symple_shortcodes_mce_button', {
            title: 'Symple Shortcodes',
            type: 'menubutton',
            icon: 'icon symple-shortcodes-icon',

我认为symple_shortcodes_mce_button是简码的名称。因此,我尝试通过以下自定义代码将此代码添加到TinyMCE中:

$settings = array(
    'tinymce' => array(
        'toolbar1' => 'symple_shortcocdes',
        'toolbar2' => '',
    ),
    'wpautop' => false,
    'media_buttons' => false,
);
wp_editor("","comment",$settings);

好的,我在工具栏中找不到此插件,我不知道这里的问题。我认为它应该显示在我的工具栏上。

第二个问题:我只想在工具栏中最后仅添加symple_shortcode按钮。将所有默认按钮保留在TinyMCE的设置中。有什么方法可以做到吗?

0 个答案:

没有答案