• Resolved zenerry

    (@zenerry)


    Is there any way to change the sorting order in this plugin?
    by title or name, for example… by default it uses “date” I think…

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Zenerry, I think I have an answer for you. I have been able to sort the items alphabetically by adding these two lines to the waving-portfolio.php file.

    ‘orderby’ => ‘title’,
    ‘order’ => ‘ASC’,

    add them to here [starting at line 393]:

    $args=array(
    ‘post_type’ => $type,
    ‘post_status’ => ‘publish’,
    ‘posts_per_page’ => -1,
    ‘orderby’ => ‘title’,
    ‘order’ => ‘ASC’,
    ‘waving_portfolio_tag’ => $tagCondition,
    ‘cache_results’ => false);

    You can also order by ‘DESC’ – this post was a useful reference:
    https://codex.www.ads-software.com/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Thread Starter zenerry

    (@zenerry)

    Great! I’ll try it later

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sorting Order’ is closed to new replies.