WordPress zaplanowany post, który można oglądać z przodu
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