woocommerce_checkout_billing
Usage
add_action( 'woocommerce_checkout_billing', 'wp_kama_woocommerce_checkout_billing_action' ); /** * Function for `woocommerce_checkout_billing` action-hook. * * @return void */ function wp_kama_woocommerce_checkout_billing_action(){ // action... }
Where the hook is called
woocommerce_checkout_billing
woocommerce/templates/checkout/form-checkout.php 40
<?php do_action( 'woocommerce_checkout_billing' ); ?>
Where the hook is used in WooCommerce
woocommerce/includes/class-wc-checkout.php 63
add_action( 'woocommerce_checkout_billing', array( self::$instance, 'checkout_form_billing' ) );