Accessing Cron Jobs
Click My Hosting in the top navigation, then select Cron Jobs from the left sidebar.Creating a Cron Job
Configure the Job
Enter the command to run and set the schedule using standard cron syntax or the schedule picker.
Common Use Cases
- Running WordPress’s built-in
wp-cron.phpon a real schedule instead of relying on visitor-triggered execution - Automating database exports or cleanup scripts
- Triggering custom PHP scripts at regular intervals
WordPress relies on
wp-cron for scheduled tasks such as publishing scheduled posts, sending emails, and running plugin maintenance. On low-traffic sites, wp-cron may not fire reliably since it depends on visitor requests. Setting up a real cron job to call wp-cron.php directly ensures these tasks run on time.