woocommerce_after_my_account
Deprecated woocommerce_after_my_account action.
Description
do_action( 'woocommerce_after_my_account' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_after_my_account' );
- The following example is for adding a hook callback.
- // define the woocommerce_after_my_account callback
- function action_woocommerce_after_my_account( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_after_my_account', 'action_woocommerce_after_my_account', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_after_my_account', 'action_woocommerce_after_my_account', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /templates/myaccount/dashboard.php
- do_action( 'woocommerce_after_my_account' );