Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter totallytech

    (@totallytech)

    Scrub that, sorted…

    Changed $args['orderby'] = 'menu_order';
    to $args['orderby'] = 'title';

    Plugin Author Nimble3

    (@nimble3)

    More standard way is to add a WP filter in functions.php of your theme, so your changes wont get lost after you upgrade the plugin version.

    Add following code in functions.php of your theme.

    add_filter('nimble_portfolio_query_args', 'nimble_portfolio_query_args_handle');
    
    function nimble_portfolio_query_args_handle($args) {
    
    $args['orderby'] = 'title';
    return $args;
    }

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