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 … Continue reading Switch off Post Scheduling – The Post will Display Even if the Date is in the Future