2013-08-05 65 views
0

我在WordPress中使用TinyMCE,當你輸入編輯器時,文本的顏色是#333333或rgb(51,51,51)。奇怪的是,「選擇文本顏色」按鈕中的默認顏色是#eeeeee,但是當您在頁面加載時鍵入時,它仍然是#333333。我使用的functions.php這個函數來設置顏色:在WordPress中指定TinyMCE編輯器的字體顏色?

function change_mce_options($init) { 
    $init['theme_advanced_default_foreground_color'] = '#eeeeee'; 
    $init['theme_advanced_text_colors'] = 'eeeeee,ff4343,8383cc'; 
return $init; } 
add_filter('tiny_mce_before_init', 'change_mce_options'); 

如何更改默認字體顏色和文字的字體家族都進入了編輯器?

+0

您可以嘗試使用高級的Tinymce插件,不需要代碼來執行 –

+0

我更願意使用幾行代碼將新插件添加到組合中。 – eclipsis

回答

1

創建你的主題根文件夾my-editor-style.css樣式表,並把你的風格有:

body#tinymce.wp-editor { 
    font-family: Arial, Helvetica, sans-serif; 
} 

body#tinymce.wp-editor a { 
    color: #4CA6CF; 
} 

最後加入以下鉤到您functions.php文件加載該文件:

add_action('init', 'wpse8170_add_editor_styles'); 
function wpse8170_add_editor_styles() { 
    add_editor_style('my-editor-style.css'); 
} 

瞭解更多關於editor styles在codex中。

+0

很好的答案,謝謝尤金。 – eclipsis

相關問題