问题 I am trying to order the products by sku within an order in an email in Woocommerce . I have not had any luck with the following code. Some help? Thanks since now! add_filter( 'woocommerce_order_get_items', function( $items, $order ) { uasort( $items, function( $a, $b ) { return strnatcmp( $a['_sku'], $b['_sku'] ); } ); return $items; }, 10, 2 ); Sample sort result: INFSTRAW I NFMUFFIN INFFLORES INFTAFLOR INFTAPINK CTEPINK4 CTECAKE4 INFCHOCO UCUBTOMA 回答1: Updated On July 2020 Here is the way