woocommerce_email_settings_after
Action hook fired after displaying email settings.
Usage
add_action( 'woocommerce_email_settings_after', 'wp_kama_woocommerce_email_settings_after_action' ); /** * Function for `woocommerce_email_settings_after` action-hook. * * @param string $email The email object * * @return void */ function wp_kama_woocommerce_email_settings_after_action( $email ){ // action... }
- $email(string)
- The email object
Where the hook is called
woocommerce_email_settings_after
woocommerce/includes/emails/class-wc-email.php 1066
do_action( 'woocommerce_email_settings_after', $this );
Where the hook is used in WooCommerce
woocommerce/includes/admin/settings/class-wc-settings-emails.php 37
add_action( 'woocommerce_email_settings_after', array( $this, 'email_preview_single' ) );