Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
495 views
in Q2A Core by
edited by

Hi, 
is there any way to sort question by postid or by inverse date .
The two are similar to sort question by last published, last in viewed  in the questions list.

I tried to modify this function in qa-theme-base.php
 

function a_list_items($a_items)
{
foreach ($a_items as $a_item)
$this->a_list_item($a_item);
}


by changint it to :

function a_list_items($a_items)
{
foreach (array_reverse($a_items) as $a_item)
$this->a_list_item($a_item);
}
 

Nothing happened.
Do you have other suggestions ? 
Thanks in advance. 

Please log in or register to answer this question.

...