[wp-trac] [WordPress Trac] #12842: Future dated custom posts mis schedule
WordPress Trac
wp-trac at lists.automattic.com
Sun Apr 4 11:14:04 UTC 2010
#12842: Future dated custom posts mis schedule
--------------------------+-------------------------------------------------
Reporter: waltervos | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: 3.0
Component: Post Types | Version: 3.0
Severity: normal | Keywords: custom post types, future dating, posts, scheduling, cron, scheduled posts
--------------------------+-------------------------------------------------
My installation of WP3 has absolutely no problem with future dated regular
posts, but when future dating a custom post type the custom post misses
schedule each and every time. I have absolutely no clue as to where things
go wrong.
Here's the code I'm using:
{{{
add_action( 'init', 'twms_register_post_types', 100 );
function twms_register_post_types() {
register_post_type('tweet', array(
'label' => __('Tweets'),
'singular_label' => __('Tweet'),
'public' => true,
'exclude_from_search' => false,
'supports' => array(
'title'
)
));
}
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/12842>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list