woocommerce_helper_loaded
Usage
add_action( 'woocommerce_helper_loaded', 'wp_kama_woocommerce_helper_loaded_action' ); /** * Function for `woocommerce_helper_loaded` action-hook. * * @return void */ function wp_kama_woocommerce_helper_loaded_action(){ // action... }
Where the hook is called
woocommerce_helper_loaded
woocommerce/includes/admin/helper/class-wc-helper.php 49
do_action( 'woocommerce_helper_loaded' );
Where the hook is used in WooCommerce
woocommerce/includes/admin/helper/class-wc-helper-compat.php 23
add_action( 'woocommerce_helper_loaded', array( __CLASS__, 'helper_loaded' ) );