Aggiungi pulsante alla barra TinyMCE senza creare un plug-in


8

Sto cercando di aggiungere uno o due pulsanti personalizzati all'editor Rich Text di TinyMCE. I tutorial che ho visto finora sono obsoleti o spiegano come farlo con un plug-in personalizzato. Come posso farlo senza creare un plug-in, forse nel functions.phpfile invece? Per essere precisi, voglio aggiungere un pulsante "h2" che aggiungerà a <h2></h2>nel corpo.

Risposte:


9

È quasi il golf del codice, ma questo è il più piccolo pezzo di codice con cui potrei creare che creerà un pulsante sull'editor visivo per trasformare il paragrafo corrente in un <h2>blocco.

add_filter( 'tiny_mce_before_init', 'wpse18719_tiny_mce_before_init' );
function wpse18719_tiny_mce_before_init( $initArray )
{
    $initArray['setup'] = <<<JS
[function(ed) {
    ed.addButton('h2', {
        title : 'H2',
        image : 'img/example.gif',
        onclick : function() {
            ed.formatter.toggle( 'h2' );
        }
    });
}][0]
JS;
    return $initArray;
}

add_filter( 'mce_buttons', 'wpse18719_mce_buttons' );
function wpse18719_mce_buttons( $mce_buttons )
{
    $mce_buttons[] = 'h2';
    return $mce_buttons;
}

Si basa su un esempio di codice TinyMCE e utilizza un trucco per passare una funzione come setupvariabile ( che non sarà più necessaria in 3.2 ).

Per aggiungere un pulsante all'editor HTML è possibile estendere il codice "tag rapidi" molto più semplice accodando questo file Javascript aggiuntivo:

jQuery( function( $ ) {
    var h2Idx = edButtons.length;
    edButtons[h2Idx] = new edButton(
        'ed_h2'  // id
        ,'h2'    // display
        ,'<h2>'  // tagStart
        ,'</h2>' // tagEnd
        ,'2'     // access
    );
    var h2Button = $( '<input type="button" id="ed_h2" accesskey="2" class="ed_button" value="h2">' );
    h2Button.click( function() {
        edInsertTag( edCanvas, h2Idx );
    } );
    // Insert it anywhere you want. This is after the <i> button
    h2Button.insertAfter( $( '#ed_em' ) );
    // This is at the end of the toolbar
    // h2Button.appendTo( $( '#ed_toolbar' ) );
} );

Farby come puoi fare lo stesso per l'editor HTML? molte grazie!!!
Filippo,

2
@Philip: risulta molto semplice. Ho aggiunto il codice che dovresti accodare come Javascript aggiuntivo.
Jan Fabry,
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.