action_scheduler_stored_action, $post_id

action_scheduler_stored_action, $post_id

Hook Type: action

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

do_action('action_scheduler_stored_action, $post_id') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php line 45
    			$post_array = $this->create_post_array( $action, $scheduled_date );
    			$post_id    = $this->save_post_array( $post_array );
    			$this->save_post_schedule( $post_id, $action->get_schedule() );
    			$this->save_action_group( $post_id, $action->get_group() );
    			do_action( 'action_scheduler_stored_action', $post_id );
    			return $post_id;
    		} catch ( Exception $e ) {
    			/* translators: %s: action error message */
    			throw new RuntimeException( sprintf( __( 'Error saving action: %s', 'action-scheduler' ), $e->getMessage() ), 0 );
    		}
    	}