欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

禁止wordpress自動將半角轉(zhuǎn)換為全角 禁止全角和半角的轉(zhuǎn)換

  發(fā)布時間:2014-01-26 10:30:46   作者:佚名   我要評論
發(fā)布文章時WordPress會自動將代碼中的單雙引號轉(zhuǎn)換為全角符號,分享代碼特別不方便,解決方法如下

找到wp-includes/formatting.php文件中

復(fù)制代碼
代碼如下:

// 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);

將兩行替換函數(shù)代碼加上注釋,在前面加上 //


復(fù)制代碼
代碼如下:

// 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);

相關(guān)文章

最新評論