2015-12-22 118 views
0

我在我的WP主題上創建主題選項。我的主題選項中的文本編輯器沒有字體顏色選項。我如何添加?我在網上搜索,但沒有運氣。在常規頁面和帖子上,我可以看到字體顏色選項。Wordpress文本編輯器中的字體顏色

我正在使用選項框架。下面的代碼片段:

$options[] = array(
     'name' => __('Main text block', 'options_check'), 
     'id' => 'main_text_editor', 
     'type' => 'editor', 
     'settings' => $wp_editor_settings); 

回答

0

聽起來像是你的顯示文本,並希望充分編輯器。如果是這樣,使用下面的代碼到你的選項頁上顯示一個空的編輯器:

<?php 

$content = ''; 
$editor_id = 'mycustomeditor'; 

wp_editor($content, $editor_id); 

?> 

瞭解更多關於準備在法典:http://codex.wordpress.org/Function_Reference/wp_editor

+0

感謝,但它不是問題。我編輯了我的問題。看一看 – theo

相關問題