我的问题没有找到足够具体的答案:
我的wordpress网站上安装了一个名为Nova Gallery的插件。此插件可以选择向图像添加说明/标题。但是,输入它的文本框根本不是富文本,因此对图像的描述看起来就像一团文字。
这是nova-gallery-options.php的代码:
<label class="main">Caption:</label>
<textarea name="<?php echo $itemNamePrefix;?>itemCaption<?php echo $itemNameSuffix; ?>[]"><?php echo stripcslashes( esc_textarea( $fields['itemCaption'][$i] ) ); ?></textarea>
我的问题是:我在哪里'插入'wp_editor?
<?php wp_editor( $content, $editor_id, $settings = array() ); ?>
Shunarjuna在http://wordpress.org/support/topic/convert-text-area-into-wp-editor改变了他的文本区域:
<textarea name="post_content"><?php echo esc_textarea( $listing->post_content ); ?></textarea>
进入:
<?php wp_editor( $listing->post_content, 'listingeditor', $settings = array('textarea_name' => post_content) ); ?>
也许Shunarjuna的解决方案有助于解决我的问题?
提前致谢!非常感谢您的帮助!