web-dev-qa-db-ja.com

tinyMCEにフォントサイズのツールバーを追加する方法は?

この方法で、tinyMCEをテキストエリアに初期化します。フォント、太字の斜体は機能していますが、フォントサイズの選択は機能していません。

tinymce.init({
    selector: "textarea#content",
    theme: "modern",
    width: 586,
    height: 300,
    menubar:false,
    font_size_classes : "fontSize1, fontSize2, fontSize3, fontSize4, fontSize5, fontSize6",//i used this line for font sizes 
    content_css: "css/content.css",
    toolbar: "sizeselect | bold italic | fontselect | fontsize",//used font size for showing font size toolbar   
style_formats: [

    {title: 'Bold text', inline: 'b'},
            {title: 'Red text', inline: 'span', styles: {color: '#ff0000'}},
            {title: 'Red header', block: 'h1', styles: {color: '#ff0000'}},
            {title: 'Example 1', inline: 'span', classes: 'example1'},
            {title: 'Example 2', inline: 'span', classes: 'example2'},
            {title: 'Table styles'},
            {title: 'Table row 1', selector: 'tr', classes: 'tablerow1'}
    ],
});**
40
Hasnain

必要なことは、fontsizeselectをツールバー構成パラメーターに追加することだけです。

toolbar: "sizeselect | bold italic | fontselect |  fontsizeselect",

更新:

tinymce.init({
  fontsize_formats: "8pt 10pt 12pt 14pt 18pt 24pt 36pt"
});
100
Thariama
theme_modern_font_sizes: "10px,12px,13px,14px,16px,18px,20px",
font_size_style_values: "12px,13px,14px,16px,18px,20px",

toolbar: "insertfile undo redo | fontsizeselect |
5
user1787582

これは、パースペクティブに役立つ場合があります。以下は、フォントタイプとサイズのオプションを含む私のTinyMCE init JSコードです。

tinymce.init({
    selector: '#articletextarea',
    plugins: [
        'advlist autolink lists link image charmap preview hr anchor pagebreak',
        'searchreplace wordcount visualblocks visualchars code',
        'insertdatetime media nonbreaking table contextmenu directionality',
        'emoticons template paste textcolor colorpicker textpattern imagetools codesample'
    ],
    toolbar: 'codesample | bold italic sizeselect fontselect fontsizeselect | hr alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | insertfile undo redo | forecolor backcolor emoticons | code',
    fontsize_formats: "8pt 10pt 12pt 14pt 18pt 24pt 36pt",
    height: "350",
    menubar: false
});
4
JGilmartin

wordpressは、フォントを変更するなどの基本的な機能であっても、人々が背景を掘り下げてコードで遊ぶようにしようと努力しているようです。

幸いなことに、実際のコーディングを行わずにフォントサイズメニューを有効にする方法を見つけました。

ただ-

  1. プラグイン「TinyMCE Advanced」を使用します
  2. 設定で有効にします。

詳細な手順はこちら

2
shadowoflight