Created an Administration plugin to customize the WP Admin view. All fine an dandy on my server, but when I put it live on the multisite network it needs to go on, the XML feed does not display on the dashboard (though it does on my testing server).
Error:
RSS Error: XML error: Reserved XML Name at line 2, column 38
Plugin code:
function dashboard_custom_feed_output()
{
echo '<div class="rss-widget">';
wp_widget_rss_output(array(
'url' => 'http://www.dvmelite.com/feed',
'title' => 'News from DVM Elite',
'items' => 2,
'show_summary' => 1,
'show_author' => 0,
'show_date' => 1
));
echo "</div>";
}
I checked functions.php and their are no spaces outside <?php ?> that could be causing this error (which you would think if that was it it would show on my testing server as well).