使用函数替换智能引号(以下基于this plugin), 在里面functions.php
:
function wpse89095_untexturize( $text ) {
$char_codes = array( \'‘\', \'’\', \'“\', \'”\', \'′\', \'″\' );
$replacements = array( "\'", "\'", \'"\', \'"\', "\'", \'"\' );
return str_replace( $char_codes, $replacements, $text );
}
然后在将选项保存到数据库之前,在
functions.php
:
function wpse89095_untexturize_option( $newvalue, $oldvalue ){
$newvalue = wpse89095_untexturize( $newvalue );
return $newvalue;
}
add_filter( \'pre_update_option_{OPTION}\', \'wpse89095_untexturize_option\', 10, 2 );
注意:更换
{OPTION}
使用要筛选的选项的名称。