Add a new order status that Send an email notification in WooCommerce 4+
问题 I would like to add a new order status and email notification to my site in conjunction with this order status. I tried this code: // register a custom post status 'awaiting-delivery' for Orders add_action( 'init', 'register_custom_post_status', 20 ); function register_custom_post_status() { register_post_status( 'wc-awaiting-delivery', array( 'label' => _x( 'Kargoya Verildi', 'Order status', 'woocommerce' ), 'public' => true, 'exclude_from_search' => false, 'show_in_admin_all_list' => true,