Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Full Content of Most Recent Post on Front-Page?

Made some changes, but this works:

<?php

$forum_id = 1;

$forum_one_topics = $bbdb->get_results("SELECT * FROM $bbdb->topics WHERE forum_id = $forum_id ORDER BY topic_time DESC LIMIT 0,10") ?>

<?php foreach($forum_one_topics as $topic) :

?>

<a href="<?php topic_link(); ?>"><?php topic_title(); ?></a><br />

<?php endforeach; ?>

but it doesnt show the typed text only the title of the forum. What to add to also show the typed text (NOT the replies ofcourse)

Many thx

Skip to toolbar