Feedburner doesn’t update when “scheduled post” publishes

I’ve searched around and can’t find anything on this, so thought I’d see if y’all could help. I am successfully scheduling posts and having them publish – no “missed schedule” problems – but when a scheduled post is published, WordPress does not ping Feedburner, and my feed is not updated. I can manually go into … Read more

Update content of multiple pages/posts at once?

Is this possible? using shortcodes? Custom post type? Custom Fields? CSV upload? Unique content per page. Do not need to create new pages, Just update body of them. Seems like a tough one? Also can this be scheduled. Specifically there are a dozen Horoscope pages, with a paragraph of text. I’d like to update each … Read more

Allow Facebook to preview posts before published

I want to allow Facebook (user agent facebookexternalhit) to access scheduled posts before they’re published, so it can access meta information in order to schedule a status. Currently I temporarily publish posts, schedule Facebook statuses, and then unpublish and schedule posts via WordPress. When a WordPress post is scheduled, editors can access the pre-published page … Read more

How to schedule autopost publishing at each 60 minutes?

I am using following code to auto publish posts from images uploaded, it works but does not schedule posts publishing, all post are published right after images were uploaded by media uploader in wordpress dashboard. $autopost_controler = get_theme_mod( ‘auto_onoff’ ); if( $autopost_controler != ” ) { switch ( $autopost_controler ) { case ‘on’: add_action( ‘add_attachment’, … Read more

Unschedule a post

I have some posts scheduled for tomorrow. I want instead to remove the scheduled date and simply publish them manually when I am ready. I can’t find anything about this. Does just setting them to “Draft” accomplish this? When I change the status from “scheduled” to “draft”, the date remains. 3 Answers 3 To revert … Read more

wp_insert_post to schedule a post – but nothing happens?

I’m trying to schedule a post that is currently a draft: function schedule() { $postdate = date(‘2014-06-11 00:30:00’); $post = array( ‘ID’ => 11, ‘post_status’ => ‘future’, ‘post_type’ => ‘post’, ‘post_author’ => ‘1’, ‘ping_status’ => ‘closed’, ‘to_ping’ => ‘http://rpc.pingomatic.com/’, ‘post_date_gmt’ => $postdate ); wp_insert_post( $post ); } add_action(‘wp_head’, ‘schedule’); Nothing happens to the post in … Read more