Tagged: news widget
Checked this out and the solution there doesn’t seem to work.
https://kriesi.at/support/topic/latest-news-widget-reverse-order/
Do you guys have a good way to reorder the news widget? I’d like it alphabetical ideally, or temporally reversed.
Thanks!
Hey jarstern0,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
Hi,
Thank you for the info.
Please modify the framework > php > class-framework-widgets.php file then look for the “avia_newsbox” class. You can find the post query starting from line 475.
$additional_loop = new WP_Query("cat=".$cat."&posts_per_page=".$count);
Order parameters here: // https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Best regards,
Ismael
Thanks. I’m now using:
$additional_loop = new WP_Query(“cat=”.$cat.”orderby=date&order=ASC&posts_per_page=”.$count);
Is this correct? Doesn’t seem to be working for some reason.