echo \'<form action="" class="booked-settings-form" method="post">\';
$default_content=\'<p>Mail formate</p>\';
$editor_id = \'customerCleanerMail\';
$option_name=\'customerCleanerMail\';
$default_content=html_entity_decode($default_content);
$default_content=stripslashes($default_content);
wp_editor( $default_content, $editor_id,array(\'textarea_name\' => $option_name,\'media_buttons\' => false,\'editor_height\' => 350,\'teeny\' => true) );
submit_button(\'Save\', \'primary\'); echo \'</form>\';
if(isset($_POST[\'customerCleanerMail\']) ){
$var2=htmlentities(wpautop($_POST[\'customerCleanerMail\']));
$fff=update_option(\'customerCleanerMail\', $var2);
}
在表单部分,我使用了wp\\U编辑器及其选项,wp\\U编辑器的工作方式类似于html编辑器,但当您存储这些数据时,它不会存储TML数据。所以我们找到了存储html数据的解决方案wpautop()和HTMLEntities()这两个函数都有助于存储html格式的数据