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