Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #848895

    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!

    #849083

    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

    #849221
    This reply has been marked as private.
    #850263

    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

    #850713

    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.

    #850868

    Hi,

    There’s a missing ampersand character.

    $additional_loop = new WP_Query("cat=".$cat."&orderby=date&order=ASC&posts_per_page=".$count);
    

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.