如何在TinyMCE编辑器中添加一个简码按钮?


34

如何在Wordpress帖子中制作任何插件图标?我想在插件代码中插入的代码将显示在帖子栏中[wp-admin / post.php]。

像这张图片:

在此处输入图片说明

输出:如果我单击该图标,它将自动写入[plugin]帖子内容,如下所示:

在此处输入图片说明


添加您想要获得的结果的屏幕截图。目前尚不清楚您想要什么。
fuxia

我想您想创建一个插件,该插件在插件中添加TinyMCE按钮,该插件会插入WordPress短代码,对吗?
2012年

Answers:


65

要将按钮添加到TinyMCE编辑器,我们需要做几件事:

  1. 将我们的按钮添加到工具栏
  2. 注册一个TinyMCE插件
  3. 创建该TinyMCE插件,该插件告诉TinyMCE单击我们的按钮时该怎么做。

步骤1和2

在这些步骤中,我们注册了TinyMCE插件,该插件将位于javascript文件中'path/to/shortcode.js'(请参见wpse72394_register_tinymce_plugin()下文)

 // init process for registering our button
 add_action('init', 'wpse72394_shortcode_button_init');
 function wpse72394_shortcode_button_init() {

      //Abort early if the user will never see TinyMCE
      if ( ! current_user_can('edit_posts') && ! current_user_can('edit_pages') && get_user_option('rich_editing') == 'true')
           return;

      //Add a callback to regiser our tinymce plugin   
      add_filter("mce_external_plugins", "wpse72394_register_tinymce_plugin"); 

      // Add a callback to add our button to the TinyMCE toolbar
      add_filter('mce_buttons', 'wpse72394_add_tinymce_button');
}


//This callback registers our plug-in
function wpse72394_register_tinymce_plugin($plugin_array) {
    $plugin_array['wpse72394_button'] = 'path/to/shortcode.js';
    return $plugin_array;
}

//This callback adds our button to the toolbar
function wpse72394_add_tinymce_button($buttons) {
            //Add the button ID to the $button array
    $buttons[] = "wpse72394_button";
    return $buttons;
}

第三步

现在我们需要创建我们的TinyMCE插件。这将放入文件中'path/to/shortcode.js'(如早期步骤中所指定)。

jQuery(document).ready(function($) {

    tinymce.create('tinymce.plugins.wpse72394_plugin', {
        init : function(ed, url) {
                // Register command for when button is clicked
                ed.addCommand('wpse72394_insert_shortcode', function() {
                    selected = tinyMCE.activeEditor.selection.getContent();

                    if( selected ){
                        //If text is selected when button is clicked
                        //Wrap shortcode around it.
                        content =  '[shortcode]'+selected+'[/shortcode]';
                    }else{
                        content =  '[shortcode]';
                    }

                    tinymce.execCommand('mceInsertContent', false, content);
                });

            // Register buttons - trigger above command when clicked
            ed.addButton('wpse72394_button', {title : 'Insert shortcode', cmd : 'wpse72394_insert_shortcode', image: url + '/path/to/image.png' });
        },   
    });

    // Register our TinyMCE plugin
    // first parameter is the button ID1
    // second parameter must match the first parameter of the tinymce.create() function above
    tinymce.PluginManager.add('wpse72394_button', tinymce.plugins.wpse72394_plugin);
});

1
在第1步中,将init钩子更改为钩子admin_init还可以节省前端的一些额外处理。
蒂姆·马隆

这取决于您是否也可以在前端使用TinyMCE。但是,是的,如果这仅是管理员方面,admin_init则更可取。
史蒂芬·哈里斯

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.