如何在管理界面中启用TINYMCE富文本编辑器?

时间:2012-01-21 作者:cwd

我想在我的分类档案上方添加一些文本,我想使用内置的Wordpress TinyMCE编辑器来完成。我见过一些插件,比如black-studio-tinymce-widget 这在向小部件添加富文本方面做得很好,但我想在编辑类别页面的描述区域中设置TinyMce。

是否有插件可以做到这一点,或者如何设置Wordpress来允许这一点?

screenshot-with-shadow.png http://img140.imageshack.us/img140/4526/screenshotwithshadow.png

2 个回复
最合适的回答,由SO网友:Joe Hoyle 整理而成

像这样的东西看起来不是你想要的http://wordpress.org/extend/plugins/rich-text-tags/

SO网友:T.Todua

wp_editor() 输出文本区域(html代码),因此,可能不需要在函数中使用它。php,但在页面源代码中使用。(生成textarea的地方,例如:

<div class="blabla>
  <form action="" method="POST">
  <?php wp_editor( \'Hi,its content\' , \'desired_id_of_textarea\', $settings = array(\'textarea_name\'=>\'your_desired_name_for_$POST\') ); ?> 
  <input type="submit">
  </form>
</div>
注意:它可能不适用于add_option 作用

结束

相关推荐

未出现在wp_Dropdown_Categories中的术语

我正在尝试在前端使用wp\\u dropdown\\u类别。我得到了默认为“未分类”的下拉框,类别的其余部分不在那里。function cats_dropdown(){ require_once(ABSPATH . \'/wp-admin/includes/template.php\'); $args = array(\'taxonomy\' => \'category\'); ?> <div> <?php