Update fetch_blog_posts.js

This commit is contained in:
Bruno Škvorc 2018-10-24 15:00:56 +02:00 committed by GitHub
parent e994897bd0
commit 2e3ade7a8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ $(document).ready(function () {
type: "get",
url: url,
success: function (response) {
response.posts = response.posts.reverse();
$.each(response.posts, function (index, val) {
var excerpt = '';
if(val.custom_excerpt != null) {