You schedule a post for 9am, come back later, and instead of being live it says Missed Schedule. Frustrating, especially if you rely on scheduling for a content calendar. The cause is almost always WP-Cron, and there are a few solid fixes.

Why it happens

WordPress doesn’t have a true scheduler. Instead, it uses WP-Cron, which only runs when someone visits your site. On a low-traffic site, if nobody visits around the scheduled time, the task doesn’t fire and the post is marked as missed. Certain caching setups and plugin conflicts can also block WP-Cron from running.

Quick fix: a scheduling plugin

The simplest solution is a small plugin that catches and re-publishes missed scheduled posts. It periodically checks for posts stuck in “missed schedule” and pushes them live. For most people this is all they need.

Better fix: a real server cron job

The robust solution is to stop relying on visitor traffic and trigger WP-Cron from a real server cron job. First, disable the default behaviour by adding this to wp-config.php:

define('DISABLE_WP_CRON', true);

Then, in cPanel, open Cron Jobs and add a task that runs every 15 minutes:

*/15 * * * * wget -q -O - https://yourdomain.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1

Now WordPress’s scheduled tasks fire reliably regardless of traffic. This also stops WP-Cron running on every single page load, which slightly improves performance.

Rule out a plugin conflict

If posts still miss after setting up a real cron, temporarily deactivate your plugins and test. Some security or caching plugins block requests to wp-cron.php. Once you find the offender, look for a setting to whitelist cron rather than removing the plugin.

Check your timezone

A less obvious cause: a mismatched timezone. Go to Settings → General and make sure the timezone matches where you actually are, so “9am” means what you think it means.

The server cron approach is what we set up for content-heavy clients — it’s the most reliable by a distance. Ask us if you’d like a hand configuring it.

Was this article helpful to you?

admin

Leave a Reply

You must be logged in to post a comment.