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


20

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

しかし、add_editor_style()関数はエディターの本体のスタイルにのみアクセスできると想定していますか?

その場合、TinyMCE Formatドロップダウンのスタイリングにアクセスするために使用できる別のメソッドまたは関数はありますか?

ここに画像の説明を入力してください

回答:


44

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

  • inline –たとえば「span」を生成するインライン要素の名前。現在のテキスト選択は、このインライン要素でラップされます。
  • block –たとえば「h1」を生成するブロック要素の名前。選択範囲内の既存のブロック要素は、新しいブロック要素に置き換えられます。
  • selector –選択内の要素を見つけるためのCSS 3セレクターパターン。これを使用して、特定の要素またはテーブルの奇数行などの複雑なものにクラスを適用できます。
  • classes –選択した要素または新しいインライン/ブロック要素を適用するクラスのスペース区切りリスト。
  • スタイル-色などの適用するCSSスタイルアイテムを含む名前/値オブジェクト
  • 属性–選択した要素または新しいインライン/ブロック要素に適用する属性を持つ名前/値オブジェクト。
  • exact-使用時に類似スタイルのマージ機能を無効にします。これは、下線/取り消し線のテキスト装飾などのいくつかのCSS継承の問題に必要です。
  • ラッパー–現在の形式がブロック要素のコンテナ形式であることを伝える状態。たとえば、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;
}

カスタムスタイル

次に、このボタンのドロップダウンを強化します。配列内の追加の値を介した有効化にも役立ちます。この例のコーデックスを参照してください。

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

}

結果

ここに画像の説明を入力してください

強化されたドロップダウンメニュー

ツリーメニューを使用してドロップダウンを強化することもできます。次のソースのように、配列内のより多くの構造を使用して、上記の例のソースから変数を作成します。

    $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'
        )
    );

ここに画像の説明を入力してください

その他の可能性とパラメータについては、スタイル形式ドロップダウンフィールドのデフォルト値を参照してください(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'}
    ]}
];

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

これが最後のポイントです。hookを使用して、この形式のカスタムcssを含めますmce_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] );
    }
}

私はこれを概念的に理解していると思います。基本的には、WPの標準の書式設定ボックスを削除し、スタイリングを制御するために独自のスタイルドロップダウンを追加します。私の理解は正しいですか?
マークP 14年

右。現在、formatselectドロップダウンを変更するためのフックが見つかりません。このドロップダウンにはメニューを作成する機能はなく、WPのtinymce.jsの静的な値です。
bueltge

また、この答えへのヒントは、私が今見つけました。
bueltge

ああ大丈夫!おかげで、これは今のところ良い解決策です。やってみます!
マークP

2
注:$settings['style_formats_merge'] = true;»fb_mce_before_init()«に追加することにより、デフォルトのスタイルをフォーマットドロップダウンに追加できます。
ニコライ

5

この回答によれば、スタイルをドロップダウンに表示するための鍵は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;
}

2

非常に有用であり、defaultstylesポインターに感謝します。デフォルトのオプションを有効なJSON(有効なJavaScriptではない)に変換するまで、配列のマージは機能しませんでした。以下では、置換する代わりにWordPress tinymceのドロップダウンを追加できます

デフォルトオプション(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;
}

注:$settings['style_formats_merge'] = true;»fb_mce_before_init()«に追加することにより、デフォルトのスタイルをフォーマットドロップダウンに追加できます。
ニコライ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.