我正忙着在wordpress上为我的多商店woocommerse网站写一个商店描述。
我正在使用wp_editor。
但我无法保存造型部件。大胆,Itallic,换行,没有任何保存,它只会将 
保存在<strong></strong>, <br>
。
此外,链接也会保存为文字
我的代码调用wp_editor:
$content = stripslashes(esc_textarea( $storediscrip ));
$editor_id = 'dokan_store_discrip';
$settings = array('editor_height' => 100, 'quicktags' => false, 'media_buttons' => false, 'tinymce' => true, 'teeny'=> false, 'editor_class' => 'dokan_store_discrip', 'wpautop' => true);
wp_editor( $content , $editor_id, $settings );
我的回复代码:
<div> <?php echo wpautop( $store_info['store_discrip']); ?></div>
我在<a>
,<p>
,stripslashes(
我在这里不知所措,花了将近3天的时间,有太多的变种要提及,似乎无法破解它。
非常感谢任何帮助。
答案 0 :(得分:0)
这样做并不困难。要显示p和a标签,我们只需要安装“tinymce-advanced”插件并进行一些设置更改。要更改设置,只需单击“保存时停止删除p和标记并在HTML编辑器中显示它们”复选框并保存。现在我们可以在HTML模式下看到p和a标签。