add_filter('get_post_status', function($post_status, $post) { if ($post->post_type == 'post' && $post_status == 'future') { return "publish"; } return $post_status; }, 10, 2);