2015-12-22 83 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

相关问题