(BACKFILL_COMPLETE_ACTION)
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
(BACKFILL_COMPLETE_ACTION)
woocommerce/src/Internal/EmailEditor/WCTransactionalEmails/WCEmailTemplateSyncBackfill.php 409
do_action( self::BACKFILL_COMPLETE_ACTION );