部分定时发布的文章由于未知原因后台提示定时发布失败,但文章数量过多,一页页的发布也不现实,我们可以批量修改数据库实现。
WordPress文章数据库表: wp_posts
UPDATE `wp_posts`
SET `post_status` ='publish' WHERE (`post_status`='future');
UPDATE `wp_posts`
SET `post_status` ='publish' WHERE (`post_status`='pending');
UPDATE `wp_posts`
SET `post_status` ='pending' WHERE (`post_status`='publish');