mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-06 12:42:25 +08:00
7 lines
352 B
Text
7 lines
352 B
Text
// Up-sells sorting
|
|
add_filter( 'woocommerce_upsells_orderby', function() { return 'date'; } );
|
|
add_filter( 'woocommerce_upsells_order', function() { return 'desc'; } );
|
|
|
|
// Cross-sells sorting
|
|
add_filter( 'woocommerce_cross_sells_orderby', function() { return 'date'; } );
|
|
add_filter( 'woocommerce_cross_sells_order', function() { return 'desc'; } );
|