action_scheduler_enable_recreate_data_store
Usage
add_filter( 'action_scheduler_enable_recreate_data_store', 'wp_kama_action_scheduler_enable_recreate_data_store_filter' );
/**
* Function for `action_scheduler_enable_recreate_data_store` filter-hook.
*
* @param $true
*
* @return
*/
function wp_kama_action_scheduler_enable_recreate_data_store_filter( $true ){
// filter...
return $true;
}
- $true
- -
Where the hook is called
action_scheduler_enable_recreate_data_store
woocommerce/packages/action-scheduler/classes/ActionScheduler_ListTable.php 352
if ( ( is_a( $this->store, 'ActionScheduler_HybridStore' ) || is_a( $this->store, 'ActionScheduler_DBStore' ) ) && apply_filters( 'action_scheduler_enable_recreate_data_store', true ) ) {