您可以添加:
"wpautop" => false
作为wp\\u编辑器的参数。
示例(里程可能有所不同):
$args = array(
"textarea_name" => $this->option_name . "[editor_text]", // Name of the textarea on the forms, this value is passed when submitting the form.
"textarea_rows" => 15, // The number of rows textarea displays.
"wpautop" => false, // So <p> tags are not removed going from text->visual->text in editor.
"editor_class" => "my_editor_custom_css" // Additional CSS classes added to the TinyMce editor.
);
echo wp_editor($display_text, "my_editor_html_id", $args);
请注意,您必须使用
<p> </p>
标签,而不是
<br>
但不管怎样,这是目前首选的方式,因为它可以让您在不接触html的情况下使用css进行格式化。