woocommerce_email_settings_after хук-событиеWC 1.0

Action hook fired after displaying email settings.

Использование

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(строка)
The email object

Где вызывается хук

WC_Email::admin_options()
woocommerce_email_settings_after
woocommerce/includes/emails/class-wc-email.php 1000
do_action( 'woocommerce_email_settings_after', $this );

Где используется хук в WooCommerce

Использование не найдено.