RSS / XML Feeds
RSS (real simple syndication) makes it possible to subscribe to a iGoldrush instead of visiting it directly. It is an increasingly popular way to access blog and news content on the Internet.
You can get everything on iGoldrush by visiting our web site, but we also provide the following feeds for those who prefer reading the site in an RSS aggregator.
The Full Feed: FEED | ![]() The full feed of Latest News, Featured Articles, and more. *Use this feed on your website |
Featured Articles Feed: FEED | ![]() Featured iGoldrush articles, contributing columnists, and guest writers. |
Use the iGoldrush Feed on Your Website
The iGoldursh News Feed turns your website or blog into an exciting “go to” resource for up-to-date domain news, gathering news from all of the most popular domain blogs and news websites into one useful resource!
How to use the iGoldrush Domain News Feed to your WordPress Blog
The iGoldrush News Feed is so easy to implement that you’ll have up-to-date news live on your site in minutes! To add the feed to your blog, add the following code to the area of your website/blog where you want the feed to be displayed (sidebar, footer, page center).
<?php include_once(ABSPATH . WPINC . '/rss.php');
wp_rss('http://feeds.feedburner.com/iGoldRush', 3); ?>
First, the rss.php is included. This is part of the WordPress core and allows us to use the wp_rss() function that we use in the next line. The wp_rss() function has two parameters: the rss feed url and the number of entries to be displayed. In the code above, you are displaying the iGoldrush News Feed on your website with the 3 most recent entries. To display more or less news items, simply change the #3 to the number of items that you wish to display. That’s it!