代码如下 | 复制代码 |
$qmr_work_tags = array(
'the_title', // 标题 'the_content', // 内容 'the_excerpt', // 摘要 'single_post_title', // 单篇文章标题 'comment_author', // 评论作者 'comment_text', // 评论内容 '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'); } |
代码如下 | 复制代码 |
//取消内容转换
remove_filter('the_content', 'wptexturize'); //取消摘要转换
remove_filter('the_excerpt', 'wptexturize'); //取消评论转换
remove_filter('comment_text', 'wptexturize'); //取消标题转换
remove_filter('the_title', 'wptexturize'); |