カスタム wordpress フォーム、wp_editor を使用して、テキストエリアに Tinymce インスタンスを作成します。
エディターのデフォルトは HTML ですが、編集領域をクリックするとコンテンツが消えます。
ただし、ビジュアル モードに切り替えると、すべて期待どおりに動作し、HTML モードに戻すとすべて動作します。おそらくクリックが TinyMCE によって傍受されているのでしょうか?
手がかりをください....
ありがとうマーティン
PS の初期化は次のとおりです。
$settings = array(
'wpautop' => true,
'media_buttons' => false,
'tinymce' => array(
'theme_advanced_buttons1' => 'bold,italic,underline,blockquote,|,undo,redo,|,fullscreen',
'theme_advanced_buttons2' => '',
'theme_advanced_buttons3' => '',
'theme_advanced_buttons4' => '',
'theme_advanced_resizing' => true,
'width' => '600px'
)
);