使用快捷码禁用自动格式化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用快捷码禁用自动格式化相关的知识,希望对你有一定的参考价值。
function my_formatter($content) {    $new_content = '';    $pattern_full = '{([raw].*?[/raw])}is';    $pattern_contents = '{[raw](.*?)[/raw]}is';    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'); add_filter('the_content', 'my_formatter', 99);
以上是关于使用快捷码禁用自动格式化的主要内容,如果未能解决你的问题,请参考以下文章