"use strict"; fetch('https://earth-for-all.com/twentyseventeen/wp-json/wp/v2/pages/2?_embed') .then(data => { if (!data.ok) { throw Error(data.status) } return data.json() }) .then(page => { var txt="" txt = "

" + page.title['rendered'] + "

" document.querySelector(".header-content").innerHTML = txt txt="" txt += "

Page ID: " + page['id'] + "

" txt += "

Date: " + page['date'] + "

" txt += "

Slug: " + page['slug'] + "

" txt += "

Link: " + page['link'] + "

" txt += "

Content: " + page.content['rendered'] + "

" txt += "
" document.querySelector(".content").innerHTML = txt }) .catch(e => { console.log(e) })