中山php|最優網絡 :中山做網站 中山php建站
最優良人
Posts Tagged With: wordpress
wordpress半角引號變全角的解決方法
2011/09/01 at 09:34 » Comments (17)
解決WordPress半角引號自動轉換為全角引號問題有許多種方法,有插件,有修改源碼,有修改主題,下面介紹兩種: 一、通過修改主題functions.php實現(推薦使用): 在主題functions.php文件中加入以下代碼: /*禁用半角引號自動轉換為全角引號*/ remove_filter('the_content','wptexturize'); 二、通過修改WP源文件實現: 注釋掉 wp-includes\formatting.php文件的下列兩行代碼即可 $curl = str_replace($static_characters, $static_replacements, $curl); $curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl); more »