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

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

add_action( 'woocommerce_email_editor_render_start', 'wp_kama_woocommerce_email_editor_render_start_action' );

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

	// action...
}

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

Content_Renderer::render_without_css_inline()
woocommerce_email_editor_render_start

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

woocommerce/packages/email-editor/src/Integrations/Core/class-initializer.php 106
add_action( 'woocommerce_email_editor_render_start', array( $this, 'reset_renderers' ) );