Skip to content

Instantly share code, notes, and snippets.

View eagleyed's full-sized avatar
🏠
Working from home

Rituparna sonowal eagleyed

🏠
Working from home
  • Individual
  • Kolkata, India
View GitHub Profile
@eagleyed
eagleyed / class-woocommerce-order-status.php
Created August 13, 2020 18:15 — forked from yratof/class-woocommerce-order-status.php
Custom order status for Woocommerce
<?php
class order_status_customisation {
/**
* Setup actions
*/
static function setup() {
add_action( 'init', __CLASS__ . '::adding_additional_order_statuses', 10 );
add_filter( 'wc_order_statuses', __CLASS__ . '::add_awaiting_shipment_to_order_statuses', 10, 1 );