How to add a custom or new order status in woocommerce wordpress
For add a custom or new order status in woocommerce store. just copy and paste below code into your theme's functions.php or in your custom plugins file. For example i am add a shipping order status for order . // register post status wc-shipping add_action('init','register_shipping_post_status'); function register_shipping_post_status(){ register_post_status( 'wc-shipping', array( 'label' => 'Shipping', 'public' => true, 'exclude_from_search' => false, ...