您可以尝试将其添加到函数中。php文件:
<?php
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\');
add_filter(\'the_content\', \'my_formatter\', 99);
?>
添加并保存文件后,可以将不希望格式化的代码包装为短代码:
[raw]Unformatted code[/raw]
SOURCE:http://www.wprecipes.com/disable-wordpress-automatic-formatting-on-posts-using-a-shortcodeNOTE:我尚未测试此解决方案,但它来自可靠的来源。