Religion News Blog offers you 3 free powerful ways to syndicate our news, providing your site with fresh new ‘sticky’ content: the headline ticker, RSS news feed, and a headline sidebar.
Intergrate our news into your site using our RSS feed. We recommend using Magpie RSS Parser (PHP) to quickly and easily put this feed on your site. A simple sample:
<?php
require_once 'rss_fetch.inc';
$url = 'https://www.religionnewsblog.com/b2rss.php';
$rss = fetch_rss($url);
echo "Site: ", $rss->channel['title'], "<br>\n";
foreach ($rss->items as $item ) {
$title = $item[title];
$url = $item[link];
echo "<a href=$url>$title</a></li><br>\n";
echo "$item[description]<br>\n";
}
?>
For extended information on RSS parsing please refer to this tutorial.
The feed is located at: