action_scheduler_migrate_data_store
Usage
add_filter( 'action_scheduler_migrate_data_store', 'wp_kama_action_scheduler_migrate_data_store_filter' );
/**
* Function for `action_scheduler_migrate_data_store` filter-hook.
*
* @param $false
*
* @return
*/
function wp_kama_action_scheduler_migrate_data_store_filter( $false ){
// filter...
return $false;
}
- $false
- -
Where the hook is called
action_scheduler_migrate_data_store
woocommerce/packages/action-scheduler/classes/migration/Controller.php 220
$this->migrate_custom_store = apply_filters( 'action_scheduler_migrate_data_store', false );