woocommerce_after_checkout_form
Usage
add_action( 'woocommerce_after_checkout_form', 'wp_kama_woocommerce_after_checkout_form_action' );
/**
* Function for `woocommerce_after_checkout_form` action-hook.
*
* @param $checkout
*
* @return void
*/
function wp_kama_woocommerce_after_checkout_form_action( $checkout ){
// action...
}
- $checkout
- -
Where the hook is called
woocommerce_after_checkout_form
woocommerce/templates/checkout/form-checkout.php 66
<?php do_action( 'woocommerce_after_checkout_form', $checkout ); ?>