ワードプレスでマルチストア woocommerse サイトのストアの説明を書くのに忙しくしています。
wp_editor を使用しています。
しかし、スタイリングパーツを保存することはできません。太字、斜体、改行、何も保存されず、あるべき 
場所が保存されるだけです。<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 日を費やしました。
どんな助けでも大歓迎です。