Advertisement
verygoodplugins

Untitled

Jan 28th, 2021
760
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_filter( 'wpf_woocommerce_order_statuses', function( $statuses ) {
  2.  
  3.     $statuses[] = 'tbd-unpaid';
  4.     $statuses[] = 'tbd-paid';
  5.     $statuses[] = 'delivered-unpaid';
  6.  
  7.     return $statuses;
  8.  
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement