发表于: lnmp | 作者: | 日期: 2008/11/18 09:11
标签:

1:
首先找到位于WordPress安装目录/wp-includes/”目录里面的”formatting.php”文件;

2:
搜索到如下代码:
// static strings
$curl = str_replace($static_characters, $static_replacements, $curl);
// regular expressions
$curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);

3:
将其全部注释掉:
// static strings
// $curl = str_replace($static_characters, $static_replacements, $curl);
// regular expressions
// $curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);

4:
OK,搞定。

: https://blog.darkmi.com/2008/11/18/520.html

本文相关评论 - 1条评论都没有呢
Post a comment now » 本文目前不可评论

No comments yet.

Sorry, the comment form is closed at this time.