Created
February 19, 2016 23:41
-
-
Save marythought/6b3d06e6dd28637903a8 to your computer and use it in GitHub Desktop.
WP REST API JavaScript to render blog preview
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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