Incompatible with WordPress 4.7
-
This plugin is incompatible with WordPress 4.7 due to removal of wp-includes/class-feed.php
Failed opening required ‘wp-includes/class-feed.php’ in wp-content/plugins/rss-just-better/RSS-just-better.php on line 1155
It’s easily patched by changing the requires in wp-content/plugins/rss-just-better/RSS-just-better.php:
function rssjb_List($feed, $filter, $num, $ltime, $list, $target, $pubdate, $pubtime, $dformat, $tformat, $pubauthor, $excerpt, $charex, $chartle, $sort, $cachefeed) { //WORDPRESS-1090 Patch to fix: RSS Just Better is incompatible with WordPress 4.7 - the if and all the require lines here if ( ! class_exists( 'SimplePie', false ) ) { require_once( ABSPATH . WPINC . '/class-simplepie.php' ); } require_once( ABSPATH . WPINC . '/class-wp-feed-cache.php' ); require_once( ABSPATH . WPINC . '/class-wp-feed-cache-transient.php' ); require_once( ABSPATH . WPINC . '/class-wp-simplepie-file.php' ); require_once( ABSPATH . WPINC . '/class-wp-simplepie-sanitize-kses.php' );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Incompatible with WordPress 4.7’ is closed to new replies.