Skip to content

Instantly share code, notes, and snippets.

@marythought
Created February 19, 2016 23:41
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 marythought/6b3d06e6dd28637903a8 to your computer and use it in GitHub Desktop.
Save marythought/6b3d06e6dd28637903a8 to your computer and use it in GitHub Desktop.
WP REST API JavaScript to render blog preview
function Article(object) {
this.title = object.title.rendered;
this.link = object.guid.rendered;
this.excerpt = object.excerpt.rendered;
if (object.content.rendered.match("img .+ src=[\"'](.+?)[\"'].*?") != null) {
this.image = object.content.rendered.match("img .+ src=[\"'](.+?)[\"'].*?")[1];
}
}
Article.prototype.toHtml = function() {
title = '<li><h3><a href=' + this.link + ' target="_blank">' + this.title + '</a></h3>'
text = this.excerpt + '<em><a href=' + this.link + ' target="_blank">READ MORE</a></em></li><p><br><p>';
if (this.image) {
return title + '<img src=' + this.image + '>' + text;
} else {
return title + text;
}
};
Article.loadAll = function(){
Article.all = Article.rawData.map(function(ele) {
return art = new Article(ele);
});
};
Article.render = function(){
Article.all.forEach(function(art){
$('#blog-titles').append(art.toHtml())
})
}
Article.ajaxCall = function(){
$.ajax({
url: 'http://www.marydickson.com/wp-json/wp/v2/posts?per_page=20',
}).done(function( data ) {
Article.rawData = data;
Article.loadAll();
Article.render();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment