I have the v3articles hack installed and I want it to display the 10 last added articles on the main page.. Asking for help on v3articles.com is close to impossible so I'm hoping someone here can help me out.
So far I've managed to do this:
In article.php I have managed to add this:
Code:
//START NEW ARTICLES
$new = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "article ORDER BY dateline DESC LIMIT 10");
$newcount = $DB_site->num_rows($new);
eval('$articlebits .= "' . fetch_template('article_newbit') . '";');
if ($newcount > 0)
{
eval('$articlecontent .= "' . fetch_template('article_newlist') . '";');
}
else
{
eval('$articlecontent .= "' . fetch_template('article_newlist_noresults') . '";');
}
//END NEW ARTICLES
Now I've added the two new templates, but I don't think I have that code 100% correct. I also need help in putting it it on the article index page. Can anyone here point me in the right direction? I've been stuck on this for a while.
Thanks, and sorry for resorting to asking for help, I just can't figure it out.