Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Created November 6, 2018 05:25
Show Gist options
  • Save cryptexvinci/ebd3ca8720dfe1f7e9c5381f8a235158 to your computer and use it in GitHub Desktop.
Save cryptexvinci/ebd3ca8720dfe1f7e9c5381f8a235158 to your computer and use it in GitHub Desktop.
Ultimate Member - WooCommerce Order Tab Sorting
add_filter( 'um_woocommerce_account_orders_args', 'um_woo_order_tab_custom' );
function um_woo_order_tab_custom( $args ) {
$args['order'] = 'DESC';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment