Skip to content

Instantly share code, notes, and snippets.

@JoelLisenby
Last active February 28, 2020 21:43
Show Gist options
  • Save JoelLisenby/24fd8dc73ce08fe16577194b859a3453 to your computer and use it in GitHub Desktop.
Save JoelLisenby/24fd8dc73ce08fe16577194b859a3453 to your computer and use it in GitHub Desktop.
WP-JSON HTML Parser
<!doctype html>
<html>
<head>
<script>
const req = new XMLHttpRequest();
req.addEventListener('load', function(e) {
var response = JSON.parse( e.target.response );
var page_html = response.content.rendered;
let domparser = new DOMParser();
let doc = domparser.parseFromString(page_html, 'text/html' );
console.log( doc.body.children[0].rows );
doc.body.children[0].rows.forEach((element) => {
console.log(element);
numCallbackRuns++;
});
});
req.open('GET', '[siteurl]/wp-json/wp/v2/pages/[pageid]');
req.send();
</script>
</head>
<body></body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment