woocommerce_admin_order_data_after_billing_address
The WordPress Core woocommerce admin order data after billing address hook.
Description
add_action( 'woocommerce_admin_order_data_after_billing_address', (string) $delta_wccs_custom_checkout_details_pro_billing, (int) $int, (int) $int );
Parameters (3)
- 0. $delta_wccs_custom_checkout_details_pro_billing (string) =>
'delta_wccs_custom_checkout_details_pro_billing'
- The delta wccs custom checkout details pro billing.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
1
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_admin_order_data_after_billing_address', $delta_wccs_custom_checkout_details_pro_billing, $int, $int );
- The following example is for adding a hook callback.
- // define the woocommerce_admin_order_data_after_billing_address callback
- function action_woocommerce_admin_order_data_after_billing_address( $delta_wccs_custom_checkout_details_pro_billing, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_admin_order_data_after_billing_address', 'action_woocommerce_admin_order_data_after_billing_address', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_admin_order_data_after_billing_address', 'action_woocommerce_admin_order_data_after_billing_address', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /woocommerce-checkout-manager.php
- add_action( 'woocommerce_admin_order_data_after_billing_address', 'delta_wccs_custom_checkout_details_pro_billing', 10, 1 );