Come aggiungere un pulsante shortcode all'editor TinyMCE?


34

Come rendere qualsiasi icona di plug-in nel post di wordpress? Il codice che voglio inserire nel codice del plugin e apparirà nella barra dei post [wp-admin / post.php].

Come questa immagine:

inserisci qui la descrizione dell'immagine

Output: se faccio clic sull'icona, questo scrive automaticamente [plugin]sul contenuto del post in questo modo:

inserisci qui la descrizione dell'immagine


Aggiungi una schermata del risultato che desideri ottenere. Non è chiaro quello che vuoi.
fuxia

Penso che tu voglia creare un plugin che aggiunge un pulsante TinyMCE all'editor che inserisce uno shortcode di WordPress, giusto?
Developdaly

Risposte:


65

Per aggiungere il nostro pulsante all'editor TinyMCE, dobbiamo fare diverse cose:

  1. Aggiungi il nostro pulsante alla barra degli strumenti
  2. Registra un plugin TinyMCE
  3. Crea quel plug-in TinyMCE che dice a TinyMCE cosa fare quando si fa clic sul pulsante.

Passaggi n. 1 e n. 2

In questi passaggi registriamo il nostro plug-in TinyMCE che vivrà all'interno di un file javascript all'indirizzo 'path/to/shortcode.js'(vedi wpse72394_register_tinymce_plugin()sotto)

 // 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;
}

Passaggio n. 3

Ora dobbiamo creare il nostro plug-in TinyMCE. Questo andrà in un file 'path/to/shortcode.js'(come specificato nei primi passi).

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
Nel passaggio 1, cambiando il initgancio con il admin_initgancio si potrebbe anche risparmiare qualche leggera elaborazione extra sul front-end.
Tim Malone,

Dipende, puoi avere TinyMCE anche sul front-end. Ma sì, se questo è solo lato amministratore, admin_initsarebbe preferibile.
Stephen Harris,

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.