Hi all,
I try to sort the postings in the widget the other way around, from ascending (count) to descending (count). Can someone figure this out?
Please help me out!
thx
Hi all,
I try to sort the postings in the widget the other way around, from ascending (count) to descending (count). Can someone figure this out?
Please help me out!
thx
Change following code in sidebar_news.php located under newscast\framework\theme_widgets
$additional_loop = new WP_Query("cat=".$cat."&posts_per_page=".$count);
to
$additional_loop = new WP_Query("cat=".$cat."&posts_per_page=".$count."&order=ASC");You must log in to post.