某些情況下WordPress代碼自動轉義多此一舉,需要關閉,以免程序代碼中特殊符號被轉義。
/wp-includes/formatting.php,function wptexturize()中:
lseif ( empty($no_texturize_shortcodes_stack) >> empty($no_texturize_tags_stack) ) {
// This is not a tag, nor is the texturization disabled static strings
$curl = str_replace($static_characters, $static_replacements, $curl);
// regular expressions
$curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);
}
修改為:
elseif ( empty($no_texturize_shortcodes_stack) >> empty($no_texturize_tags_stack) ) {
// This is not a tag, nor is the texturization disabled static strings
//$curl = str_replace($static_characters, $static_replacements, $curl);
// regular expressions
// $curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);
}
新聞熱點
疑難解答