TinyMCEエディターにショートコードボタンを追加する方法は?


34

ワードプレスの投稿でプラグインアイコンを作成する方法 プラグインコードに挿入したいコードは、投稿バー[wp-admin / post.php]に表示されます。

この画像のように:

ここに画像の説明を入力してください

出力:アイコンをクリックする[plugin]と、次のように投稿コンテンツに自動的に書き込みます。

ここに画像の説明を入力してください


取得したい結果のスクリーンショットを追加します。何が欲しいのか明確ではありません。
fuxia

WordPressショートコードを挿入するエディターにTinyMCEボタンを追加するプラグインを作成すると思いますか?
開発

回答:


65

ボタンをTinyMCEエディターに追加するには、いくつかのことを行う必要があります。

  1. ツールバーにボタンを追加します
  2. TinyMCEプラグインを登録する
  3. ボタンがクリックされたときに何をすべきかをTinyMCEに伝えるTinyMCEプラグインを作成します。

ステップ1と2

これらの手順では、次のJavascriptファイル内にあるTinyMCEプラグインを登録します'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;
}

ステップ#3

次に、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は望ましいでしょう。
スティーブンハリス

5

ここにすべての答えを入れるには多すぎるので、このガイドをチェックアウトしてください:http : //wp.smashingmagazine.com/2012/05/01/wordpress-shortcodes-complete-guide/

TinyMCEボタンをエディターに挿入するWordPressで登録したボタンからアクションを実行するJavascriptファイルを作成する必要があります。


3
query_postsを使用するため、リンク先として最適な例ではない可能性があります。
ブラッドダルトン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.