Bulk Editting in WP.

webhandler

Newbie
Joined
May 10, 2013
Messages
25
Reaction score
2
Hi I have about 500,000 pages that need to be editted on a wordpress blog. Regex cant do it and I just wanted to know what are some of the ways you can edit so many WP pages all at once or in bulk for that matter.
 
The following link may help, other than that, google is your friend. Lots of results for bulk edit in wordpress

Code:
http://www.hongkiat.com/blog/how-to-search-and-replace-wordpress-in-blog-post/
 
Here is an mysql code that can search and replace text.
Code:
UPDATE wp_posts SET post_content = REPLACE (  
post_content,  
'Item to replace here',  
'Replacement text here');
 
/\ /\ /\ This. Direct SQL manipulation is the best way to go for this. Just backup your database first (you never know!)
 
Back
Top