我在Wordpress中有2000个预定的帖子。我想更改计划日期并更新mysql数据库。
update wp_posts SET post_date = FROM_UNIXTIME(
UNIX_TIMESTAMP() + FLOOR(0 + (RAND() * 31557600)))
WHERE post_status = 'future';
update wp_posts SET post_modified = post_date
WHERE post_status = 'future';
update wp_posts SET post_modified_gmt = post_date
WHERE post_status = 'future';
update wp_posts SET post_date_gmt = post_date
WHERE post_status = 'future';
我目前在Wordpress管理面板上收到错误消息。它是"错过了时间表"。
我该如何解决?感谢。