2010-08-05, 01:26 AM
I use to use this code to display the last 10 posts in my vB forum on my front page:
I'd also like to do the same for just a specific forum as well.
thanks
<!--
for (x = 0; x < 10; x++)
{
document.writeln("<li><a href=\"http://www.idevgames.com/forum/showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a></li");
}
//-->
I know how to display the feed for MyBB, but how do I display a list (<li>) of the last 10 from the entire forum, and just have the titles appeared hyperlinked?I'd also like to do the same for just a specific forum as well.
thanks