woocommerce_email_footer
The WooCommerce Checkout Manager woocommerce email footer hook.
Description
Parameters (1)
- 0. $wccm_after_checkout (string) =>
'wccm_after_checkout'
- The wccm after checkout.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_email_footer', $wccm_after_checkout );
- The following example is for adding a hook callback.
- // define the woocommerce_email_footer callback
- function action_woocommerce_email_footer( $wccm_after_checkout ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_email_footer', 'action_woocommerce_email_footer', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_email_footer', 'action_woocommerce_email_footer', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /woocommerce-checkout-manager.php
- add_action('woocommerce_email_footer', 'wccm_after_checkout');