web-dev-qa-db-ja.com

TinyMCE:フォーマットドロップダウンへのCSSの追加

TinyMCEエディタの本文でスタイルをプレビューできるように、add_editor_style()を使用してTinyMCEスタイルシートを追加しました。

しかし、add_editor_style()関数はエディター本体のスタイルにしかアクセスできないと仮定しても正しいでしょうか。

もしそうなら、TinyMCEフォーマットドロップダウンのスタイルにアクセスするために私が使用できる他の方法または機能はありますか?

enter image description here

20
Marc P

ドロップダウンリストformatselectを拡張することはできません。しかし、あなたはフックtiny_mce_before_initを使って2番目のドロップダウンstyleselectを拡張することができます。デフォルトのWordPressインストールでは非表示があります。 ドキュメンテーション はすべてのデフォルトと可能性をリストします。

  • inline - 作成するインライン要素の名前、例えば "span"。現在のテキスト選択はこのインライン要素でラップされます。
  • block - 作成するブロック要素の名前(例: "h1")。選択範囲内の既存のブロック要素は、新しいブロック要素に置き換えられます。
  • selector - 選択範囲内の要素を検索するためのCSS 3セレクタパターン。これは、特定の要素にクラスを適用したり、テーブル内の奇数行などの複雑なものを適用するために使用できます。
  • classes - 選択した要素または新しいインライン/ブロック要素を適用するためのスペース区切りのクラスリスト。
  • styles - 色などのCSSスタイル項目を適用する名前/値オブジェクト.
  • attributes - 選択した要素または新しいインライン/ブロック要素に適用する属性を持つ名前/値オブジェクト。
  • exact - 使用時に類似スタイルのマージ機能を無効にします。これは、アンダーライン/取り消し線のテキスト装飾など、CSSの継承に関するいくつかの問題に必要です。
  • wrapper - 現在のフォーマットがブロック要素のコンテナフォーマットであることを通知する状態。例えばdivラッパーやblockquoteです。

スタイルボタン

デフォルトでは、スタイルドロップダウンはWordPressでは非表示になっています。最初に、カスタムフォーマットのボタンをTinyMCEのメニューバーに追加します(例2のフックmce_buttons_2)。

add_filter( 'mce_buttons_2', 'fb_mce_editor_buttons' );
function fb_mce_editor_buttons( $buttons ) {

    array_unshift( $buttons, 'styleselect' );
    return $buttons;
}

カスタムスタイル

それからこのボタンのドロップダウンを強化してください。配列内の追加の値を介してenancementを使用すると便利なので、この例については codex を参照してください。

/**
 * Add styles/classes to the "Styles" drop-down
 */ 
add_filter( 'tiny_mce_before_init', 'fb_mce_before_init' );

function fb_mce_before_init( $settings ) {

    $style_formats = array(
        array(
            'title' => 'Download Link',
            'selector' => 'a',
            'classes' => 'download'
            ),
        array(
            'title' => 'My Test',
            'selector' => 'p',
            'classes' => 'mytest',
        ),
        array(
            'title' => 'AlertBox',
            'block' => 'div',
            'classes' => 'alert_box',
            'wrapper' => true
        ),
        array(
            'title' => 'Red Uppercase Text',
            'inline' => 'span',
            'styles' => array(
                'color'         => 'red', // or hex value #ff0000
                'fontWeight'    => 'bold',
                'textTransform' => 'uppercase'
            )
        )
    );

    $settings['style_formats'] = json_encode( $style_formats );

    return $settings;

}

結果

enter image description here

拡張ドロップダウンメニュー

ツリーメニューでドロップダウンを強化することもできます。次のソースのように、配列内にもっと構造を付けて上記のサンプルソースからvarを作成します。

    $style_formats = array(
        array(
            'title' => 'Headers',
                'items' => array(
                array(
                    'title' => 'Header 1',
                    'format' => 'h1',
                    'icon' => 'bold'
                ),
                array(
                    'title' => 'Header 2',
                    'format' => 'h2',
                    'icon' => 'bold'
                )
            )
        ),
        array(
            'title' => 'Download Link',
            'selector' => 'a',
            'classes' => 'download'
        )
    );

enter image description here

より多くの可能性とパラメータについてはスタイルフォーマットドロップダウンフィールドのデフォルト値を見てください(JavaScriptで書いてください)。

var defaultStyleFormats = [
    {title: 'Headers', items: [
        {title: 'Header 1', format: 'h1'},
        {title: 'Header 2', format: 'h2'},
        {title: 'Header 3', format: 'h3'},
        {title: 'Header 4', format: 'h4'},
        {title: 'Header 5', format: 'h5'},
        {title: 'Header 6', format: 'h6'}
    ]},

    {title: 'Inline', items: [
        {title: 'Bold', icon: 'bold', format: 'bold'},
        {title: 'Italic', icon: 'italic', format: 'italic'},
        {title: 'Underline', icon: 'underline', format: 'underline'},
        {title: 'Strikethrough', icon: 'strikethrough', format: 'strikethrough'},
        {title: 'Superscript', icon: 'superscript', format: 'superscript'},
        {title: 'Subscript', icon: 'subscript', format: 'subscript'},
        {title: 'Code', icon: 'code', format: 'code'}
    ]},

    {title: 'Blocks', items: [
        {title: 'Paragraph', format: 'p'},
        {title: 'Blockquote', format: 'blockquote'},
        {title: 'Div', format: 'div'},
        {title: 'Pre', format: 'pre'}
    ]},

    {title: 'Alignment', items: [
        {title: 'Left', icon: 'alignleft', format: 'alignleft'},
        {title: 'Center', icon: 'aligncenter', format: 'aligncenter'},
        {title: 'Right', icon: 'alignright', format: 'alignright'},
        {title: 'Justify', icon: 'alignjustify', format: 'alignjustify'}
    ]}
];

カスタムスタイルシートをエディタに追加する

最後のポイントは、フックmce_cssを介してこのフォーマットのカスタムCSSを含めることです。

/**
 * Apply styles to the visual editor
 */  
add_filter( 'mce_css', 'fb_mcekit_editor_style');
function fb_mcekit_editor_style($url) {

    if ( ! empty( $url ) )
        $url .= ',';

    // Retrieves the plugin directory URL
    // Change the path here if using different directories
    $url .= trailingslashit( plugin_dir_url( __FILE__ ) ) . '/my-editor-styles.css';

    return $url;
}

このスタイルシートの規則をフロントエンドのスタイルシートにも追加することを忘れないでください。

フォーマットボタンを削除

機能強化として、ボタン配列の値を確認することでformatselectドロップダウンボタンを削除することができます。フックfb_mce_editor_buttonsの関数mce_buttons_2にフォローソースを追加します。

$value = array_search( 'formatselect', $buttons );
if ( FALSE !== $value ) {
    foreach ( $buttons as $key => $value ) {
        if ( 'formatselect' === $value )
            unset( $buttons[$key] );
    }
}
43
bueltge

Per この答え 、ドロップダウンにスタイルを表示するための鍵はunset($settings['preview_styles']);です。

add_filter( 'tiny_mce_before_init', 'fb_mce_before_init' );
function fb_mce_before_init( $settings ) {

    // customize as desired

    // unset the preview styles
    unset($settings['preview_styles']);`

    return $settings;
}
5
helgatheviking

非常に参考になり、defaultstylesポインタに感謝します。これらのデフォルトオプションを有効なJSON(無効なJavaScript)に変換するまで、配列のマージはうまくいきませんでした。下記は置き換えの代わりに追加を許可します

デフォルトオプション(JSON):

$defaults = '[{ "title": "Headers", "items": [
        { "title": "Header 1", "format": "h1" },
        { "title": "Header 2", "format": "h2" },
        { "title": "Header 3", "format": "h3" },
        { "title": "Header 4", "format": "h4" },
        { "title": "Header 5", "format": "h5" },
        { "title": "Header 6", "format": "h6" }
    ] },

    { "title": "Inline", "items": [
        { "title": "Bold", "icon": "bold", "format": "bold" },
        { "title": "Italic", "icon": "italic", "format": "italic" },
        { "title": "Underline", "icon": "underline", "format": "underline" },
        { "title": "Strikethrough", "icon": "strikethrough", "format": "strikethrough" },
        { "title": "Superscript", "icon": "superscript", "format": "superscript" },
        { "title": "Subscript", "icon": "subscript", "format": "subscript" },
        { "title": "Code", "icon": "code", "format": "code" }
    ] },

    { "title": "Blocks", "items": [
        { "title": "Paragraph", "format": "p" },
        { "title": "Blockquote", "format": "blockquote" },
        { "title": "Div", "format": "div" },
        { "title": "Pre", "format": "pre" }
    ] },

    { "title": "Alignment", "items": [
        { "title": "Left", "icon": "alignleft", "format": "alignleft" },
        { "title": "Center", "icon": "aligncenter", "format": "aligncenter" },
        { "title": "Right", "icon": "alignright", "format": "alignright" },
        { "title": "Justify", "icon": "alignjustify", "format": "alignjustify" }
        ] }
 ]'; 

Functions.phpでは、より大きなオプションハッシュを返します。

add_filter( 'tiny_mce_before_init', 'fb_mce_before_init' );
function fb_mce_before_init( $settings ) {

    $style_formats = array(
    //....

    $settings['style_formats'] = json_encode( array_merge( json_decode($defaults), $style_formats ) );
    return $settings;
}
2
s6712