You probably already know that WordPress can schedule events. For example, it can publish posts at preset dates and times. Using hooks and wp-cron
, we can easily schedule our own events. In this example, we will get our WordPress blog to send us an email once hourly.
Paste the following code block in the functions.php file of your theme.
if (!wp_next_scheduled('my_task_hook')) {
wp_schedule_event( time(), 'hourly', 'my_task_hook' );
}