woocommerce_germanized_email_footer_<id>
The WooCommerce Germanized woocommerce germanized email footer id hook.
Description
Parameters (1)
- 0. $type (unknown)
- The type.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_germanized_email_footer_{$id}', $type );
- The following example is for adding a hook callback.
- // define the woocommerce_germanized_email_footer_<id> callback
- function action_woocommerce_germanized_email_footer_id( $type ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "woocommerce_germanized_email_footer_{$id}", 'action_woocommerce_germanized_email_footer_id', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "woocommerce_germanized_email_footer_{$id}", 'action_woocommerce_germanized_email_footer_id', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /includes/class-wc-gzd-emails.php
- do_action( 'woocommerce_germanized_email_footer_' . $type->id, $type );