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.