Advanced Cron Scheduler for WordPress
The Advanced Cron Scheduler for WordPress plugin helps to easily replace or migrate Native WordPress Cron to the Action Scheduler Library.
The facts
- Rating
- 5★ from 5
- Active installs
- 100+
- Price
- Free
- Last updated
- 29 Apr 2025
- Added
- Mar 2021
- Requires WP
- 6.5
- Tested up to
- WP 6.8.8
- Requires PHP
- 7.1
- Downloads
- 9,684
Our analysis
AI-assistedThe Advanced Cron Scheduler for WordPress is a plugin designed to improve the scheduling of cron events in WordPress. It modifies the core WP-Cron system using the Action Scheduler Library, which allows for more reliable and scalable background processing of tasks. This is particularly useful for sites that rely on scheduled events but may experience issues with the default WP-Cron setup due to low traffic or other factors.
This plugin is suitable for developers and site owners who need to manage large sets of scheduled tasks effectively. It is especially beneficial for high-traffic websites or those using plugins that require reliable background processing, such as payment systems or event handling.
Best for: This plugin suits developers and site owners needing reliable background task scheduling on high-traffic WordPress sites.
What it does well
- ✓Utilises the Action Scheduler Library for improved cron event handling
- ✓Can manage large sets of actions efficiently
- ✓Designed for high-traffic websites and resource-intensive operations
- ✓Includes WP-CLI support for running tasks at scale
- ✓Free to use from the WordPress.org directory
Where it falls short
- •Limited information on specific features and configurations
- •Requires understanding of cron systems and background processing
Verdict
The Advanced Cron Scheduler for WordPress provides a robust solution for managing scheduled tasks, making it a valuable tool for those facing limitations with the default WP-Cron system.
From the developer
Sayan Datta's own description of Advanced Cron Scheduler for WordPress, lightly tidied.
The WP-Cron system in WordPress is not a “real” cron system, which means events may not run exactly according to their schedule because the system relies on regular traffic to the website in order to trigger scheduled events.
Reasons WP-Cron events can miss their schedule
- Low traffic websites may not trigger the event runner often enough
- A fatal error caused by a plugin or theme may break the event runner
- A plugin or theme may intentionally or unintentionally break the event runner
- BasicAuth, a firewall, or other access restrictions may block the event runner
- A problem with your web hosting or web server may break the event runner
- The
DISABLE_WP_CRONconfiguration constant is set but no alternative cron runner has been put in place - Long-running events may temporarily block the event runner
- High traffic websites may suffer from sequential processing issues that block the event runner
The Advanced Cron Scheduler for WordPress plugin does alter the way that WordPress core runs cron events using the Action Scheduler Library.
Action Scheduler is a scalable, traceable job queue for background processing large sets of actions in WordPress. It’s specially designed to be distributed in WordPress plugins.
Action Scheduler works by triggering an action hook to run at some time in the future. Each hook can be scheduled with unique data, to allow callbacks to perform operations on that data. The hook can also be scheduled to run on one or more occassions.
Think of it like an extension to do_action() which adds the ability to delay and repeat a hook.
Battle-Tested Background Processing
Every month, Action Scheduler processes millions of payments for Subscriptions, webhooks for WooCommerce, as well as emails and other events for a range of other plugins.
It’s been seen on live sites processing queues in excess of 50,000 jobs and doing resource intensive operations, like processing payments and creating orders, at a sustained rate of over 10,000 / hour without negatively impacting normal site operations.
This is all on infrastructure and WordPress sites outside the control of the plugin author.
If your plugin needs background processing, especially of large sets of tasks, Action Scheduler can help.
Learn More
To learn more about how to Action Scheduler works, and how to use it in your plugin, check out the docs on ActionScheduler.org.
There you will find:
- Usage guide: instructions on installing and using Action Scheduler
- WP CLI guide: instructions on running Action Scheduler at scale via WP CLI
- API Reference: complete reference guide for all API functions
- Administration Guide: guide to managing scheduled actions via the administration screen
- Guide to Background Processing at Scale: instructions for running Action Scheduler at scale via the default WP Cron queue runner