- Joined
- Jun 14, 2004
- Posts
- 11,084
- Reaction score
- 971
I've been looking for a WP plug-in than can cope with setting the Posts status on thousands of posts from "draft" to "publish", without success.
There is a bulk edit option in WP but it fails after a few hundred posts at once.
To get around this, I ran the following SQL in PHPMyAdmin:
It works, quick and simple.
Hope this helps someone.
Admin
There is a bulk edit option in WP but it fails after a few hundred posts at once.
To get around this, I ran the following SQL in PHPMyAdmin:
Code:
UPDATE `%database%_wrdp1`.`wp_posts` SET `post_status` = 'publish'
It works, quick and simple.
Hope this helps someone.
Admin