How to Configure a Cron Job for WordPress

This article describes how to configure a cron job for WordPress.


THE VIRTUAL WORDPRESS “CRON JOB”

A cron job is a task scheduled to run automatically at specific intervals. For example, a cron job could automatically back up a file every six hours.

In its default configuration, WordPress does not use a real cron job for scheduling and other related tasks. Instead, whenever a page is loaded on a WordPress site, WordPress runs the wp-cron.php file. Although this “virtual” cron job is convenient, it has a few drawbacks:

  • Running the wp-cron.php file every time WordPress loads a page is unnecessary, and can negatively affect server performance, particularly on sites that receive a lot of traffic.
  • For a site that does not receive a lot of traffic on the other hand, it can be a significant amount of time before a visitor loads a page (and triggers the cron task). This can cause missed schedules for publishing posts and other unintended effects.

To resolve these issues, you can disable the default virtual WordPress cron job, and configure a real cron job. To do this, follow the procedures below.


DISABLING THE VIRTUAL WORDPRESS CRON JOB

To disable the default virtual WordPress cron job, follow these steps:

  1. Log in to your account using cPanel or SSH. Using the cPanel File Manager or the command line, open the wp-config.php file in a text editor.
    • The wp-config.php file is located in the directory where you installed WordPress. Usually, this is the public_html directory.
  2. Add the following line to the wp-config.php file:

    define('DISABLE_WP_CRON', true);

  3. Save the changes to the wp-config.php file and then exit the text editor. The virtual WordPress cron job is now disabled.


CONFIGURING A REAL CRON JOB FOR WORDPRESS

After you have disabled the default WordPress cron configuration in the wp-config.php file, you are ready to set up a real cron job that runs at fixed intervals regardless of site traffic.

If your account includes cPanel access, you can use it to configure the cron job. Otherwise, you can configure the cron job from the command line.

Method #1: Use cPanel

To set up a WordPress cron job using cPanel, follow these steps:

  1. Log in to cPanel.
  2. In the Advanced section of the cPanel home screen, click Cron jobs.
  3. Under Cron Email, type the e-mail address that you want to receive notifications, and then click Update Email. Every time the cron job runs, the e-mail account will receive a message.


    Note: If you do not want to receive e-mail notifications for the cron job, you can append >/dev/null 2>&1 to the command, which redirects all output to /dev/null.



  4. Under Add New Cron Job, in the Common Settings list box, select Twice an hour.
    • You can run cron jobs a maximum of every 15 minutes on shared and reseller accounts. A 30-minute interval for the WordPress cron job should be more than sufficient.
  5. In the Command text box, type the following line. Replace username with your own hosting account username:

    cd /home/username/public_html; /usr/local/bin/php -q wp-cron.php

    This line assumes that you installed WordPress in the document root (public_html) directory. If you installed WordPress in another directory, modify the cd command to change to that directory instead.

  6. Click Add New Cron Job. The new cron job settings take effect immediately.

 

Method #2: Use the Command Line

To set up a WordPress cron job using the command line, follow these steps:

  1. Log in to your account using SSH.
  2. At the command prompt, type the following command:

    crontab –e

  3. Type o to enter editing mode and start a new line of text.
  4. Type the following line, replacing username with your own hosting account username:

    */30 * * * *  cd /home/username/public_html; /usr/local/bin/php -q wp-cron.php

    This line sets the cron job to run every 30 minutes. If you are on a semi-managed platform (such as a Cloud VPS) you can run cron jobs as frequently as you want. On shared and reseller accounts, however, you can only run cron jobs a maximum of every 15 minutes. A 30-minute interval for the WordPress cron job should be more than sufficient.

    This line assumes that you installed WordPress in the document root (public_html) directory. If you installed WordPress in another directory, modify the cd command to change to that directory instead.

  5. Press Esc, type :wq and then press Enter. The new cron job settings take effect immediately.


  • WordPress, cron jobs
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to Add MailChimp Subscribers from WordPress

You can add subscribers directly to a MailChimp mailing list from WordPress. This article...

Broken Image Links in WordPress

This articles describes how to resolve a problem that may occur when you try to add images to a...

How to Add CAPTCHA Protection to a WordPress Site

This article describes how to add CAPTCHA protection to a WordPress site using the Google CAPTCHA...

How to Add External RSS Feeds to your WordPress Site

This article demonstrates how to add an external RSS feed to a WordPress site. RSS (Rich Site...

How to Add a Custom Logo to WordPress

This article describes how to add a custom logo to a WordPress site. Adding a logo to your...

Powered by WHMCompleteSolution