Wp_editor添加<p>

时间:2015-05-22 17:18:03

标签: php wordpress wp-editor

我正在使用wp_editor制作表单。所以我认为在填写表格时需要Wp_editor。但不幸的是,Wp_editor自己添加了一段&lt; P&GT ;.那么如何禁用它呢?我尝试添加

$settings = array(
        'wpautop' => false,
    );

但没有变化。我还在default-filters.php中注释了这一行

add_filter( 'the_content', 'wpautop'            );

但没有任何改变。

此致

1 个答案:

答案 0 :(得分:0)

这是right in the Codex。您需要完全删除过滤器:

remove_filter( 'the_content', 'wpautop' );

由于默认情况下启用wpautop,因此注释掉该行不会为您做任何事情。