woocommerce_email_editor_initialized action-hookWC 1.0

Initialize the email editor.

Usage

add_action( 'woocommerce_email_editor_initialized', 'wp_kama_woocommerce_email_editor_initialized_action' );

/**
 * Function for `woocommerce_email_editor_initialized` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_email_editor_initialized_action(){

	// action...
}

Where the hook is called

Email_Editor::initialize()
woocommerce_email_editor_initialized
woocommerce/packages/email-editor/src/Engine/class-email-editor.php 87
do_action( 'woocommerce_email_editor_initialized' );

Where the hook is used in WooCommerce

Usage not found.