1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?php # switch off post scheduling - post will display even if the date is in the future function onetarek_prevent_future_type( $post_data ) { if ( $post_data['post_status'] == 'future' && $post_data['post_type'] == 'post' )#Here I am checking post_type='post' , you may use different post type and if you want it for all post type then remove "&& $post_data['post_type'] == 'post'" { $post_data['post_status'] = 'publish'; } return $post_data; } add_filter('wp_insert_post_data', 'onetarek_prevent_future_type'); remove_action('future_post', '_future_post_hook'); ?> |
Snippets
Now With More Bass