用WP编辑器替换插件创建textarea

时间:2016-09-28 07:47:30

标签: wordpress textarea wp-editor

需要你帮助的人。我有一个页面,通过私有内容插件我创建一个简单的textarea字段。我需要做的是通过添加富文本编辑器来改进textarea,我认为标准的WP应该没问题。

请您直接指示我需要过去哪些代码以及我应该在哪里做到这一点?你可以看到,编码不是我的强项。尝试google并在这里搜索并且有一些结果但是我不能清楚地正确实现。

希望得到你的帮助!

2 个答案:

答案 0 :(得分:0)

使用功能

wp_editor( $content, $editor_id, $settings = array() );

您可以显示默认的wordpress编辑器。快速(未经过抽样)的例子:

您的表单内容(不要忘记添加<form>代码):

<?php wp_editor( 'I am a prefilled sample text', 'editorname' ?>

从中读取的脚本:

$editor_content = $_POST['editorname']
//do stuff, perhaps put to database
save_to_db( $editor_content ) //for example

一些快速注意事项

  • 编辑器也被直接回显,因此您不必添加echo
  • $editor_id只能 包含更低的套装字母。没有下划线。

但请看看自己:https://codex.wordpress.org/Function_Reference/wp_editor

答案 1 :(得分:0)

使用此代码:

wp_editor($ content,&#39; content_id&#39;,array(&#39; textarea_name&#39; =&gt;&#39; content_id&#39;,&#39; editor_class&#39; =&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; true));