Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Sure that’s possible. :)

You want a query that gives you the last post. Forget anything messing around with the forum or the topic. You want the last post, right?

There’s no API function to do this AFAIK, so you will have to use a query. I think the structure could go something like this:

$latestpost = $bbdb->get_row("
SELECT *
FROM $bbdb->posts
WHERE post_status = 0
LIMIT 1
");

And then $latestpost has $latestpost->post_text, poster_id and so on. But unfortunately not filtered, so you’d need to apply all those. Which is a bit nasty.

But this is all unchecked and unresearched, you’ll need to play around with it. :P All this is is a bare start.

Skip to toolbar