Posting Terjadwal WordPress Menjadi dapat dilihat di ujung depan

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