A5下载 - 努力做内容最丰富最安全的下载站!

A5站长下载站

当前位置:A5下载 > 源码技巧 > wordpress > 关闭wordpress代码自动转义

关闭wordpress代码自动转义

时间:2015-04-07 16:50作者:zhao人气:76

某些情况下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);

}

标签关闭,wordpress,代码,自动,转义,某些,情况下,W

相关下载

查看所有评论+

网友评论

网友
您的评论需要经过审核才能显示

热门阅览

最新排行

公众号