Last active
April 7, 2017 23:34
-
-
Save kbxian/f7282776adba8f006c9ee148ea45e6b6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('woocommerce_order_status_completed', 'custom_process_order', 10, 1); | |
function custom_process_order($order_id) { | |
return $order_id; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment