woocommerce_after_checkout_billing_form
Использование
add_action( 'woocommerce_after_checkout_billing_form', 'wp_kama_woocommerce_after_checkout_billing_form_action' ); /** * Function for `woocommerce_after_checkout_billing_form` action-hook. * * @param $checkout * * @return void */ function wp_kama_woocommerce_after_checkout_billing_form_action( $checkout ){ // action... }
- $checkout
- -
Где вызывается хук
В файле: /templates/checkout/form-billing.php
woocommerce_after_checkout_billing_form
woocommerce/templates/checkout/form-billing.php 44
<?php do_action( 'woocommerce_after_checkout_billing_form', $checkout ); ?>