答案 0 :(得分:0)
我实际上修复了这个问题,虽然它可能不是最正确/最优雅的解决方案。
在wp-includes / feed-functions.php
中function get_the_title_rss() {
$title = get_the_title();
// $title = apply_filters('the_title', $title);
$title = apply_filters('the_title_rss', $title);
return $title;
评论该行改变了违规的#34;右单引号" (又名')进入直线上下撇号,显然喜鹊可以毫无问题地处理。
在我开始挖掘代码之前,我正在使用编码,当我将其更改为UTF-16时出现了惊喜。