How to Disable / Enable Cron Job Services in WordPress
(Last Updated On: July 10, 2014)
With the following code snippet, you’ll be able to disable or enable cron job services in WordPress. Cron job is a scheduling feature in WordPress to schedule posts, pages etc. Paste the code inside wp-config.php file.
Disable Cron Job in WordPress
define('DISABLE_WP_CRON', true);
Enable Cron Job in WordPress
Simply remove the above code from wp-config.php, if existed or replace true to false.