参考网文:https://cloud.tencent.com/developer/article/1052060中的代码为:
UPDATE `wp_posts` SET `post_status` ='publish' WHERE (`post_status`='pending');
自己查看数据库字段,发现目前使用的wordpress5.6版本已经把pending字段修改为了future,所有鸿硕科技修改代码为:
UPDATE `hs_posts` SET `post_status` ='publish' WHERE (`post_status`='future');
经测试可以成功使用。