Hello there,
Is it possible with some plugin or other method to replace a hyperlink with some other hyperlink?
I.e. World has the hyperlink: hxxp://www.world.com and I want it to be changed to hxxp://www.universe.com
Thanks!
Hello there,
Is it possible with some plugin or other method to replace a hyperlink with some other hyperlink?
I.e. World has the hyperlink: hxxp://www.world.com and I want it to be changed to hxxp://www.universe.com
Thanks!
I guess you could run a MySQL query from phpMyAdmin...
First, make a backup of your database, in case something goes wrong, then run a query like:
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.world.com','http://www.universe.com');
Ok thanks :) Will see if it works.
This topic has been closed to new replies.