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

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

add_action( 'woocommerce_helper_output', 'wp_kama_woocommerce_helper_output_action' );

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

	// action...
}

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

WC_Admin_Addons::output()
woocommerce_helper_output
woocommerce/includes/admin/class-wc-admin-addons.php 1038
do_action( 'woocommerce_helper_output' );

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

woocommerce/includes/admin/helper/class-wc-helper.php 46
add_action( 'woocommerce_helper_output', array( __CLASS__, 'render_helper_output' ) );