MyBB Community Forums

Full Version: RSS feed to show up on main site not on forums?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a mod or code that will grab the latest thread information (title, description, and date) of specific forum categories/sections and post the result on the main page of a website NOT on the forum?
MyBB comes with RSS syndication. Click the link in your Footer to RSS syndication.

Edit: Oh, I see what you mean. The feed comes up in Firefox so you should be able to add the RSS link to your homepage.
What code would I need to show the rss feed on my homepage?
Someone will help you with that soon. You need to make some PHP code which i do not know.
yes there is basically you need to pull the rss with php code, loop the feed and post it according to your style. Basic of basic of scripts...

$url = 'http://magpie.sf.net/samples/imc.1-0.rdf';
$rss = fetch_rss($url);

echo "Site: ", $rss->channel['title'], "<br>
";
foreach ($rss->items as $item ) {
	$title = $item[title];
	$url   = $item[link];
	echo "<a href=$url>$title</a></li><br>
";
}