mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
176 B
Text
5 lines
176 B
Text
add_filter( 'woocommerce_payment_complete_order_status', 'wc_autocomplete_processing_orders', 9999 );
|
|
|
|
function wc_autocomplete_processing_orders() {
|
|
return 'completed';
|
|
}
|