How can i put the newest post in the mingle forum plugin on top automaticly?
Thanks, Daan
How can i put the newest post in the mingle forum plugin on top automaticly?
Thanks, Daan
Nobody?
I've been looking for a solution too. Have you had any luck?
open wpf.class.php
search for (from line 464)
function get_posts($thread_id){
global $wpdb;
$start = $this->curr_page*$this->opt['forum_posts_per_page'];
$end = $this->opt['forum_posts_per_page'];
$limit = "$start, $end";
if($thread_id){
$posts = $wpdb->get_results("SELECT * FROM $this->t_posts WHERE parent_id = $thread_id ORDER BY <code>date</code> ASC LIMIT $limit");
return $posts;
}else{
return false;
}
}
replace
ASC LIMIT
with
DESC LIMIT
You must log in to post.