wc_autoship_checkout_create_autoship_schedule (action)
Fires after creating an Autoship Schedule at checkout.
Example
<?php /** * @param int $schedule_id * @param int $order_id */ function wc_autoship_checkout_create_autoship_schedule_example( $schedule_id, $order_id ) { } add_action( 'wc_autoship_checkout_create_autoship_schedule', 'wc_autoship_checkout_create_autoship_schedule_example', 10, 2 );