woocommerce_account_<key>_endpoint
The WooCommerce woocommerce account key endpoint hook.
Description
Parameters (1)
- 0. $value (unknown)
- The value.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_account_{$key}_endpoint', $value );
- The following example is for adding a hook callback.
- // define the woocommerce_account_<key>_endpoint callback
- function action_woocommerce_account_key_endpoint( $value ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "woocommerce_account_{$key}_endpoint", 'action_woocommerce_account_key_endpoint', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "woocommerce_account_{$key}_endpoint", 'action_woocommerce_account_key_endpoint', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /includes/wc-template-functions.php
- do_action( 'woocommerce_account_' . $key . '_endpoint', $value );
- /includes/shortcodes/class-wc-shortcode-my-account.php
- do_action( 'woocommerce_account_' . $key . '_endpoint', $value );