Advertisement
mArtti

json

Jun 5th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. getResults() {
  2. $.getJSON('http://localhost:3000/wp-json/wp/v2/posts?search=' + this.searchField.val(), posts => {
  3. this.resultsDiv.html(`
  4. <h2 class="search-overlay__section-title">General Information</h2>
  5. <ul class="link-list min-list">
  6. ${posts.map(item => `<li><a href="${item.link}">${item.title.rendered}</a></li>`).join('')}
  7. </ul>
  8. `);
  9. });
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement