Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Posts to appear in Descending order


thomasklaiber
Member

@thomasklaiber

You mean ascending? ^^

It think currently this can only be done by hardcoding. Look at functions.php around line 44-66 and you can change

$bb_last_countable_query = "SELECT * FROM $bbdb->topics $where ORDER BY topic_time DESC LIMIT $limit";

to

$bb_last_countable_query = "SELECT * FROM $bbdb->topics $where ORDER BY topic_time ASC LIMIT $limit";

But then every post-listing will be ordered as ascending.

This is the only way I can figure out at the moment…

Skip to toolbar