2022-06-09 12:43:17 +00:00
|
|
|
# Checkout Order Processed
|
|
|
|
|
2021-10-13 09:45:59 +00:00
|
|
|
```php
|
|
|
|
// The action callback function.
|
|
|
|
function my_function_callback( $order ) {
|
|
|
|
// Do something with the $order object.
|
|
|
|
$order->save();
|
|
|
|
}
|
|
|
|
|
2021-11-02 10:15:12 +00:00
|
|
|
add_action( 'woocommerce_blocks_checkout_order_processed', 'my_function_callback', 10 );
|
2021-10-13 09:45:59 +00:00
|
|
|
```
|