mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/49551938/set-woocommerce-new-orders-to-on-hold-without-going-to-processing
6 lines
250 B
Text
6 lines
250 B
Text
add_action( 'woocommerce_checkout_create_order', 'force_new_order_status', 20, 1 );
|
|
function force_new_order_status( $order ) {
|
|
|
|
if( ! $order->has_status('on-hold') )
|
|
$order->set_status( 'on-hold', 'Forced status by a custom script' );
|
|
}
|