About RSS feeds
ou are free to use all DomainNews.com RSS feeds on your homepage. Of course you must respect the structure and keep the links to Domainnews.com.

RSS Feed: http://www.domainnews.com/feed/rss/

See below examples on how to implement the RSS Feed on your homepage:

—————————————————————-

For WordPress blog: Use a RSS aggregator such as FirstRSS.

—————————————————————-

Display RSS feeds on your Homepage by using a Javascript RSS Converter

—————————————————————-

If you use your own PHP website structure, consider tu use a RSS feed parser such as MagpieRSS for PHP, then parse the feeds you want.

A very simple PHP example would be :

require_once 'rss_fetch.inc';   

$url = 'http://www.domainnews.com/feed/rss/';
$rss = fetch_rss($url);

echo "Site : ", $rss->channel['title'], "<br>";

foreach ($rss->items as $item ) {
$title = $item[title];
$url = $item[link];
echo "<a xhref=$url>$title</a></li><br>";
}