Snippets

Now With More Bass

Switch off Post Scheduling – The Post will Display Even if the Date is in the Future

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' &amp;&amp; $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 "&amp;&amp; $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');
 
?>