(BACKFILL_COMPLETE_ACTION) action-hookWC 10.8.0

Fires once, immediately after the RSM-149 sync-meta backfill finalizes for this site.

Hooked by WCEmailTemplateDivergenceDetector::run_sweep() so the first real divergence sweep runs with a fully-stamped post set.

Usage

add_action( '(BACKFILL_COMPLETE_ACTION)', 'wp_kama_BACKFILL_COMPLETE_ACTION_action' );

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

	// action...
}

Changelog

Since 10.8.0 Introduced.

Where the hook is called

WCEmailTemplateSyncBackfill::finalize()
(BACKFILL_COMPLETE_ACTION)

Where the hook is used in WooCommerce

Usage not found.