wordpress_schedule_event
Schedule one-time or recurring cron events in WordPress to automate tasks and functions using custom hooks for timed execution.
Instructions
Schedule a new cron event (one-time or recurring)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hook | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hook": {
"type": "string"
}
},
"required": [
"hook"
],
"type": "object"
}