Created
November 6, 2018 05:25
-
-
Save cryptexvinci/ebd3ca8720dfe1f7e9c5381f8a235158 to your computer and use it in GitHub Desktop.
Ultimate Member - WooCommerce Order Tab Sorting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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