Disabling wp-cron.php in WordPress Print

  • 28

WordPress uses a file called wp-cron.php as a virtual cron job, or scheduled task in order to automate things like publishing scheduled posts, checking for plugin or theme updates, sending email notifications and more.

By default WordPress is setup to call wp-cron.php everytime someone visits your WordPress website when a scheduled task is present, to basically ask "is it time to do anything yet?".

On low traffic sites this is perfectly fine, but when your site visits start to increase, checking multiple times for scheduled tasks can be very inefficient and lead to resource usage problems for the server, this will in turn make your website load slower.

Disable default wp-cron.php behavior

We can easily tell WordPress to let us handle the execution of wp-cron.php with the wp-config.php file.

  1. Open your wp-config.php
  2. Go to the bottom of the database settings in wp-config.php to the line
    define( 'WP_DEBUG', false );
    and add
    define('DISABLE_WP_CRON', 'true');​
  3. Click Save

Now WordPress will not automatically run the wp-cron.php script each time your site gets a new visitor.

Setup manual cron job for wp-cron.php

For most WordPress users having the wp-cron.php script run every 12 hours is perfectly fine. That would be just 2 executions in a day, compared to possibly hundreds, or even thousands if you had a lot of website traffic that day.

  1. Log into you hosting control panel
  2. Click into Cron Jobs.
  3. Add new new cron job to run hourly with the command
    php -q /home/username/public_html/wp-cron.php​

Keep in mind that the /home/username/public_html path would be for a primary domain, if you're using an addon domain, or have WordPress installed in a sub-directory you'll want to be sure to update your path.

You should see that your new cron job was added successfully.

Now WordPress should be safely running scheduled tasks via the wp-cron.php script, but only at set intervals.


Was this answer helpful?

« Back