Last active
February 27, 2019 01:12
-
-
Save Nolwennig/1c74bbdf287b181d03b70864099a8c11 to your computer and use it in GitHub Desktop.
Wordpress - find external links
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT guid, post_title, post_content | |
FROM `posts` | |
WHERE post_type = 'post' | |
AND post_content LIKE '%href%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment