Jetpack has broken rss feeds
-
one of your updates has broken rss feeds for multiple developers/plugins. this has been an issue since June/July.
It appears you are injecting Geo-targeting into XML feeds and it is mal-formatted.
Line 237 jetpack/modules/geo-location/class.jetpack-geo-location.php/**
* Add the georss namespace during RSS generation.
*/
public function rss_namespace() {
echo PHP_EOL . ‘xmlns:georss=”https://www.georss.org/georss” xmlns:geo=”https://www.w3.org/2003/01/geo/wgs84_pos#”‘ . PHP_EOL;
}i believe it should be:
public function rss_namespace() {
echo ‘ xmlns:georss=”https://www.georss.org/georss” xmlns:geo=”https://www.w3.org/2003/01/geo/wgs84_pos#” ‘;
}The page I need help with: [log in to see the link]
- The topic ‘Jetpack has broken rss feeds’ is closed to new replies.