Created
October 19, 2018 00:35
-
-
Save NickDeckerDevs/706ea9cc8569df4943f0f588f7ed6ea6 to your computer and use it in GitHub Desktop.
print all links in wordpress sitemap page in console
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
| var links = document.querySelectorAll('#sitemap td a'); | |
| [].forEach.call(links, function(link) { | |
| console.log(link.href) | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment