Is it normal for a scheduled post to say “Missed Schedule”

In short, yes. When wp-cron is not triggered frequently enough it will miss scheduled publish times. The behavior you mentioned above is normal. A visit to your site will automatically trigger wp-cron in the background and any “Missed Schedule” posts will be published promptly. To get more consistent behavior from wp-cron I’d recommend setting up … Read more

How to Create movie schedule by custom post type query

It’s very good that you are using Advanced Custom Fields. Use this for assigning running dates to movie and by making use of WP_Query you can call movies wherever is matching date. For fetching posts you can use following code: $args = array( ‘post_type’ => ‘movie’, ‘meta_key’ => ‘date’, ‘meta_query’ => array( array( ‘key’ => … Read more

Schedule reminder at exact time

I second SamuelElh comment and YES cron is the way to go. BUT, which cron? The WordPress implementation of cron is a tricky implementation. How? Actually it is a cron fired by the visits your site gets, both (back-end and front-end), so, if your site is not getting a visitor every 10 minutes as suggested … Read more

Create blog post from external source and set publication date

I don’t know why you are loading WordPress by including the core files, there should be something wrong at that point. Anyway, to schedule an event, you can use wp_schedule_single_event. This function accepts 3 arguments: wp_schedule_single_event( $timestamp, $hook, $args ); In your case, you can wrap wp_insert_post in a function, and then call it when … Read more

Scheduled posts are being published immediately

Check your server time and check time from WordPress Settings >> General and check your time zone there. Install the Health Check plugin, run it, and check what it says about WP-Cron. Remove this define(‘DISABLE_WP_CRON’, true); code from the wp-config.php file. Also, Contact your hosting provider regarding this issue 🙂