action_scheduler_stored_action
Usage
add_action( 'action_scheduler_stored_action', 'wp_kama_action_scheduler_stored_action' );
/**
* Function for `action_scheduler_stored_action` action-hook.
*
* @param $post_id
*
* @return void
*/
function wp_kama_action_scheduler_stored_action( $post_id ){
// action...
}
- $post_id
- -
Where the hook is called
action_scheduler_stored_action
action_scheduler_stored_action
woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php 45
do_action( 'action_scheduler_stored_action', $post_id );
woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php 133
do_action( 'action_scheduler_stored_action', $action_id );
Where the hook is used in WooCommerce
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 84
add_action( 'action_scheduler_stored_action', array( $this, 'log_stored_action' ) );
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 91
remove_action( 'action_scheduler_stored_action', array( $this, 'log_stored_action' ) );