修改主题文件夹里的 functions.php 文件,在其中加入以下代码即可
//WordPress英文引号变成中文的解决办法 - 模板团www.mbtuan.com
$qmr_work_tags = array(
'the_title',
'the_content',
'the_excerpt',
// 'list_cats',
'single_post_title',
'comment_author',
'comment_text',
// 'link_name',
// 'link_notes',
'link_description',
'bloginfo',
'wp_title',
'term_description',
'category_description',
'widget_title',
'widget_text'
);
foreach ( $qmr_work_tags as $qmr_work_tag ) {
remove_filter ($qmr_work_tag, 'wptexturize');
}