Guest User

Untitled

a guest
Oct 16th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. fetch('https://example.com/wp-json/wp/v2/posts')
  2. .then(response => response.json())
  3. .then(posts => {
  4. posts.forEach(post => {
  5. console.log(post.title.rendered);
  6. });
  7. });
Add Comment
Please, Sign In to add comment