wordpress发布文章后标题分隔符(被转义成)解决方法

2024年10月19日 建站教程

问题描述:wordpress发布文章后发现标题中分隔符被转义了,看上去像乱码应该如何解决!

解决方法:

1、打开wordpress主题目录中的functions.php文件

在最下面添加

//方法1:禁用所有的wordpress转义
add_filter( 'run_wptexturize', '__return_false' );

//方法2:禁用部分的wordpress转义(推荐)
remove_filter('the_title', 'wptexturize');
remove_filter('wp_title', 'wptexturize');
remove_filter('single_post_title', 'wptexturize');

本文链接:http://so.lmcjl.com/news/15725/

展开阅读全文
相关内容