Update WP post content
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
UPDATE posts SET post_content=REPLACE(post_content,'http://aaa.com','https://www.aaa.com') WHERE 1;
UPDATE posts SET post_content=REPLACE(post_content,'http://www.aaa.com','https://www.aaa.com') WHERE 1;
UPDATE posts SET post_content=REPLACE(post_content,'https://aaa.com','https://www.aaa.com') WHERE 1;