Remove all links to a specific website

You can use the Search Regex plugin. This will allow you to create a regular expression to intelligently search and replace across all of your posts.

After you activate the plugin, go to Tools, Search Regex. If you want to remove all links to http://example.com, here is one regular expression you could try:

/<a href="http:\/\/example\.com[^>]*>([\s\S]*?)<\/a>/

Enter that into the “Search pattern” box, and enter $1 into the “Replace pattern” box. Choose “Post content” for the Source, and check the “Regex” checkbox. Then click the “Replace” button. This won’t change anything in your database (yet), but it will show you a preview list of all the changes that it will make. To actually make the changes, click the “Replace & Save” button. Or if you see from the preview that your regular expression is matching something you don’t want it to, then change your regular expression and try again.

With a bulk edit like this, it’s probably a good idea to back up your database before you begin, just in case you make a mistake.

Screenshot:

enter image description here