action_scheduler_pre_theme_init
Usage
add_action( 'action_scheduler_pre_theme_init', 'wp_kama_action_scheduler_pre_theme_init_action' );
/**
* Function for `action_scheduler_pre_theme_init` action-hook.
*
* @return void
*/
function wp_kama_action_scheduler_pre_theme_init_action(){
// action...
}Where the hook is called
action_scheduler_pre_theme_init
woocommerce/packages/action-scheduler/action-scheduler.php 67
do_action( 'action_scheduler_pre_theme_init' );