Wordpress文本编辑器中的字体颜色

时间:2015-12-22 09:05:22

标签: wordpress

我正在WP主题上创建主题选项。我在“主题选项”中的文本编辑器没有字体颜色选项。我该如何添加?我在网上搜索过,但没有运气。在常规页面和帖子上,我可以看到字体颜色选项。

我正在使用Options框架。这是代码片段:

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

1 个答案:

答案 0 :(得分:0)

听起来您正在显示文本框并想要完整的编辑器。如果是这样,请使用以下代码在选项页面上显示空编辑器:

<?php

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

wp_editor( $content, $editor_id );

?>

详细了解食典委的可能性:http://codex.wordpress.org/Function_Reference/wp_editor