woocommerce_helper_subscriptions_refresh
Fires when Helper subscriptions are refreshed.
Использование
add_action( 'woocommerce_helper_subscriptions_refresh', 'wp_kama_woocommerce_helper_subscriptions_refresh_action' ); /** * Function for `woocommerce_helper_subscriptions_refresh` action-hook. * * @return void */ function wp_kama_woocommerce_helper_subscriptions_refresh_action(){ // action... }
Список изменений
С версии 8.3.0 | Введена. |
Где вызывается хук
woocommerce_helper_subscriptions_refresh
woocommerce/includes/admin/helper/class-wc-helper.php 1005
do_action( 'woocommerce_helper_subscriptions_refresh' );
Где используется хук в WooCommerce
woocommerce/includes/tracks/events/class-wc-extensions-tracking.php 23
add_action( 'woocommerce_helper_subscriptions_refresh', array( $this, 'track_helper_subscriptions_refresh' ) );