Skip to content

Instantly share code, notes, and snippets.

@robertdevore
Created December 4, 2015 15:39
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 robertdevore/7730c98cfc1a2568736c to your computer and use it in GitHub Desktop.
Save robertdevore/7730c98cfc1a2568736c to your computer and use it in GitHub Desktop.
jQuery code to display recent posts from the WordPress API
jQuery(document).ready(function($) {
$.get( "wp-json/wp/v2/posts", function( data ) {
$.each( data, function( i, val ) {
$( "#app" ).append(
'<li>' +
'<h3>' +
val.title.rendered +
'</h3>' +
'<p>' +
val.excerpt.rendered +
'</p>' +
'</li>'
);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment