web-dev-qa-db-ja.com

プラグインを作成せずにTinyMCEバーにボタンを追加する

TinyMCEのリッチテキストエディタにカスタムボタンを1つか2つ追加しようとしています。これまで見たチュートリアルは古くなっているか、カスタムプラグインを使ってそれを実行する方法を説明しています。プラグインを作成せずに、おそらく代わりにfunctions.phpファイルにこれを行うにはどうすればよいですか?具体的には、本文に<h2></h2>を追加する "h2"ボタンを追加します。

8
Mark Ursino

それはほとんどコードの問題ですが、これは私が考え出すことができる最小のコードで、ビジュアルエディタ上に現在の段落を<h2>ブロックに変えるためのボタンを作成します。

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

これは TinyMCEコードサンプル に基づいており、setup変数として関数を渡すためのトリックを使用します( 3.2では不要になります )。

HTMLエディタにボタンを追加するには、この追加のJavascriptファイルをエンキューすることによって、はるかに単純な "quicktags"コード を拡張できます。

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' ) );
} );
9
Jan Fabry