Subscribe to RSS headline updates from:
Powered by FeedBurner

'; // echo '

Make Web World Blog

'; // echo wcsp_qrc_dashboard_get_rss_feed('http://feeds.feedburner.com/MakeAWebWorld/', 10, 0, 0, 0); } function wcsp_qrc_dashboard_get_rss_feed($url, $count=5, $summary=1, $author=1, $date=1) { // SITE FEED: // http://YOUR_TLD/feed // CATEGORY FEED: // http://YOUR_TLD/category/CAT_SLUG/feed // TAG FEED: // http://YOUR_TLD/tag/TAG_SLUG/feed // start output $output = '
'; // buffer feed data so that we can change it ob_start(); wp_widget_rss_output(array( 'url' => $url, 'title' => '', 'items' => $count, 'show_summary' => $summary, 'show_author' => $author, 'show_date' => $date )); $rss_feed = ob_get_contents(); ob_end_clean(); // force links to open in a new tab $find_this = "//i"; $rss_feed = preg_replace($find_this, '', $rss_feed); // exit $output .= $rss_feed . '
'; return $output; } ?>