action_scheduler_pre_init action-hookWC 1.0

Fires in the early stages of Action Scheduler init hook.

Usage

add_action( 'action_scheduler_pre_init', 'wp_kama_action_scheduler_pre_init_action' );

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

	// action...
}

Where the hook is called

ActionScheduler::init()
action_scheduler_pre_init

Where the hook is used in WooCommerce

Usage not found.