カスタムtinyMCEボタンを使用してwp_editorインスタンスを作成する


19

wp_editor()カスタムtinyMCEボタンで定義する方法はありますか?

wp_editor関数リファレンスで、$settings引数の1 つがである可能性があることに言及していることに気付きましたtinymce (array) (optional) Load TinyMCE, can be used to pass settings directly to TinyMCE using an array()

私のページは多くの異なるインスタンスを使用しています。特定のインスタンスに特定のボタンを追加したいと思います。

例えば、

Instance #1 : Standard buttons
Instance #2 : bold, italic, ul + (custom) pH, temp
Instance #3 : bold, italic, ul + (custom) min_size, max_size

このチュートリアルに従ってボタンをtinyMCEプラグインとして既に登録している場合、誰がこれを行う方法を知っていますか?


編集

これを機能させるためにプラグインファイルで使用しているコードは次のとおりです。

function add_SF_buttons() {
    if ( ! current_user_can('edit_posts') && ! current_user_can('edit_pages') )
        return;
    if ( get_user_option('rich_editing') == 'true') {
        add_filter('mce_external_plugins', 'add_SF_buttons_plugins');
    }
}

function add_SF_buttons_plugins($plugin_array) {
    $plugin_array['pH'] = $this->plugin_url . '/js/tinymce_buttons/pH.js';
    $plugin_array['pH_min'] = $this->plugin_url . '/js/tinymce_buttons/pH_min.js';
    $plugin_array['pH_max'] = $this->plugin_url . '/js/tinymce_buttons/pH_max.js';
    return $plugin_array;
}

-

if (isset($SpeciesProfile)) {
    add_action( 'init' , array (&$SpeciesProfile, 'register_species' ));
    add_action( 'init' , array( &$SpeciesProfile, 'register_species_taxonomies' ));

    add_action( 'init', array (&$SpeciesProfile, 'add_SF_buttons' ));
}

-

<?php wp_editor( $distribution, 'distribution', array( 'theme_advanced_buttons1' => 'bold, italic, ul, pH, pH_min', "media_buttons" => false, "textarea_rows" => 8, "tabindex" => 4 ) ); ?>

残念ながら、これは機能しません。上記のエディターは、ページ上の他のすべてのインスタンスと同じボタンを表示するだけです。


前もって感謝します、

回答:


13

説明によると、あなたはそれをほとんど持っていました。

インスタンス2および3の場合は、次のようになります(インスタンス1では、設定を空のままにして、デフォルトのボタンセットを取得できます)。

インスタンス2:

wp_editor(
    $distribution,
    'distribution',
    array(
      'media_buttons' => false,
      'textarea_rows' => 8,
      'tabindex' => 4,
      'tinymce' => array(
        'theme_advanced_buttons1' => 'bold, italic, ul, pH, temp',
      ),
    )
);

インスタンス3(TinyMCEに設定できる4行のそれぞれを表示):

wp_editor(
    $distribution,
    'distribution',
    array(
      'media_buttons' => false,
      'textarea_rows' => 8,
      'tabindex' => 4,
      'tinymce' => array(
        'theme_advanced_buttons1' => 'bold, italic, ul, min_size, max_size',
        'theme_advanced_buttons2' => '',
        'theme_advanced_buttons3' => '',
        'theme_advanced_buttons4' => '',
      ),
    )
);

WPがwp_editor()関数内で使用する設定を解析する方法を理解するために、wp-includes/class-wp-editor.phpファイル(特にeditor_settings126行目の関数)をチェックアウトすることをお勧めします。また、TinyMCEの機能とその初期化オプション(WPが完全にサポートしているとは思わない)について詳しく理解するには、このページを確認してください


やあ。回答ありがとうございます。元の投稿にコードをいくつか追加しましたが、あなたの答えから判断すると機能するはずですが、機能しません。ご覧ください
ダンク

tinymce固有のパラメーターを独自の配列にラップするのを忘れました。私は答えを編集し、あなたがあなたの質問に置いたことがわかっている他のパラメータを追加しました。それがどうなるか教えてください?
トマスButeler

1
また、他の人(私!)は自分でこれを行う方法を知りたいので、duncのみに固有の答えに委ねないようにしてください。関連するWP / TinyMCEドキュメントへのリンクを追加できますか?
トムJノウェル

すばらしい、これは動作するようです。残念ながら私のボタンはそうではありませんが、それは別の質問です:) tbutelerに感謝します。
ダンク

どういたしまして!@TomJNowell、私は提案をありがとう、推奨読書と最後の段落を追加しました!
トマスButeler

9

wp_editor()関数の配列を介してパラメーターを設定できます。例

$settings = array(
    'tinymce'       => array(
        'setup' => 'function (ed) {
            tinymce.documentBaseURL = "' . get_admin_url() . '";
        }',
    ),
    'quicktags'     => TRUE,
    'editor_class'  => 'frontend-article-editor',
    'textarea_rows' => 25,
    'media_buttons' => TRUE,
);
wp_editor( $content, 'article_content', $settings ); 

param 'tinymce'、 'tinymce' => true、// TinyMCEをロードし、array()を使用して設定をTinyMCEに直接渡すために使用することができます。ボタン: theme_advanced_buttons1theme_advanced_buttons2theme_advanced_buttons3theme_advanced_buttons4

array( 'theme_advanced_buttons1' => 'bold, italic, ul, pH, temp' )

また、フィルターフックを介してカスタムボタンを作成することもできます

function fb_change_mce_options($initArray) {
    // Comma separated string od extendes tags
    // Command separated string of extended elements
    $ext = 'pre[id|name|class|style],iframe[align|longdesc|name|width|height|frameborder|scrolling|marginheight|marginwidth|src]';
    if ( isset( $initArray['extended_valid_elements'] ) ) {
        $initArray['extended_valid_elements'] .= ',' . $ext;
    } else {
        $initArray['extended_valid_elements'] = $ext;
    }
    // maybe; set tiny paramter verify_html
    //$initArray['verify_html'] = false;
    return $initArray;
}
add_filter( 'tiny_mce_before_init', 'fb_change_mce_options' );

ボタンを直接フィルタリングすることもできます。各行は、各フィルタを持っています: mce_buttonsmce_buttons_2mce_buttons_3mce_buttons_4

次のパラメータは、オンフックの例のデフォルトです。 tiny_mce_before_init

'mode' => 'specific_textareas'
'editor_selector' => 'theEditor'
'width' => '100%'
'theme' => 'advanced'
'skin' => 'wp_theme'
'theme_advanced_buttons1' => 'bold,italic,strikethrough,|,bullist,numlist,blockquote,|,justifyleft,justifycenter,justifyright,|,link,unlink,wp_more,|,spellchecker,fullscreen,wp_adv'
'theme_advanced_buttons2' => 'formatselect,underline,justifyfull,forecolor,|,pastetext,pasteword,removeformat,|,media,charmap,|,outdent,indent,|,undo,redo,wp_help'
'theme_advanced_buttons3' => ''
'theme_advanced_buttons4' => ''
'language' => 'de'
'spellchecker_languages' => 'English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,+German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv'
'theme_advanced_toolbar_location' => 'top'
'theme_advanced_toolbar_align' => 'left'
'theme_advanced_statusbar_location' => 'bottom'
'theme_advanced_resizing' => true
'theme_advanced_resize_horizontal' => false
'dialog_type' => 'modal'
'relative_urls' => false
'remove_script_host' => false
'convert_urls' => false
'apply_source_formatting' => false
'remove_linebreaks' => true
'gecko_spellcheck' => true
'entities' => '38,amp,60,lt,62,gt'
'accessibility_focus' => true
'tabfocus_elements' => 'major-publishing-actions'
'media_strict' => false
'paste_remove_styles' => true
'paste_remove_spans' => true
'paste_strip_class_attributes' => 'all'
'wpeditimage_disable_captions' => false
'plugins' => 'safari,inlinepopups,spellchecker,paste,wordpress,media,fullscreen,wpeditimage,wpgallery,tabfocus'

で見る このフィルターのこのリンクをご覧ください。


7

wpソースファイルを掘り下げなければならなかったので、これを更新するだけです。

$settings = array(
    'tinymce' => array(
        'toolbar1' => 'bold, italic',
        'toolbar2' => '',
    ),
    'wpautop' => false,
    'media_buttons' => false,
);

これはTinymce 4で変更されたと思います。


1
$args = array(
    'tinymce'       => array(
        'toolbar1'      => 'bold,italic,underline,separator,alignleft,aligncenter,alignright,separator,link,unlink,undo,redo',
        'toolbar2'      => '',
        'toolbar3'      => '',
    ),
);
wp_editor( $content, $editor_id, $args );
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.