Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created October 19, 2018 00:35
Show Gist options
  • Select an option

  • Save NickDeckerDevs/706ea9cc8569df4943f0f588f7ed6ea6 to your computer and use it in GitHub Desktop.

Select an option

Save NickDeckerDevs/706ea9cc8569df4943f0f588f7ed6ea6 to your computer and use it in GitHub Desktop.
print all links in wordpress sitemap page in console
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