I was having a small issue and I beleive Ive narrowed down the problem but am lacking a solution.
I have successfully been using one plugin that calls wp-includes/rss-functions.php
This evening I installed a second plugin that also calls wp-includes/rss-functions.php
After doing so, the first plugin stopped displaying information. It is located further on the down the page than the new plugin.
I believe this is due to more than one plugin using rss-functions.php at essentially the same time. A tip off was inside one of the plugins:
if (!function_exists('MagpieRSS')) { // Check if another plugin is using RSS, may not work
include_once (ABSPATH . WPINC . '/rss-functions.php');
error_reporting(E_ERROR);
}
Has anyone else encountered this, and if so, what was your work-around?
Ive tried, with no success, to duplicate rss-functions.php and rename all the functions and classes but thats not working out to well for me.
Tia