Skip to main content

How to Enable the WordPress Cron

To enable the internal WordPress Cron job system, open the wp-config.php file in the root of your WordPress installation and locate the following line:

define('DISABLE_WP_CRON', true);

If you want to enable the WordPress Cron again, change it to:

define('DISABLE_WP_CRON', false);