禁用Wordpress Visual Composer自动格式

时间:2017-07-28 23:34:07

标签: wordpress visual-composer

我已尝试过此代码,但仍会显示<p></p><br>标记。 有没有其他方法可以删除/禁用此功能?

function my_formatter($content) {
$new_content = '';
$pattern_full = '{(\[raw\].*?\[/raw\])}is';
$pattern_contents = '{\[raw\](.*?)\[/raw\]}is';
$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);

foreach ($pieces as $piece) {
    if (preg_match($pattern_contents, $piece, $matches)) {
        $new_content .= $matches[1];
    } else {
        $new_content .= wptexturize(wpautop($piece));
    }
}

return $new_content;
   }    

remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');

0 个答案:

没有答案