wp_(blog_id)_wc_updater_cron
Usage
add_action( 'wp_(blog_id)_wc_updater_cron', 'wp_kama_blog_id_wc_updater_cron_action' ); /** * Function for `wp_(blog_id)_wc_updater_cron` action-hook. * * @return void */ function wp_kama_blog_id_wc_updater_cron_action(){ // action... }
Where the hook is called
wp_(blog_id)_wc_updater_cron
woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php 565
do_action( 'wp_' . $blog_id . '_wc_updater_cron' );
Where the hook is used in WooCommerce
woocommerce/includes/class-wc-install.php 369
add_action( 'wp_' . $blog_id . '_wc_updater_cron', array( __CLASS__, 'run_manual_database_update' ) );