DEV Community

Discussion on: How To Build A Blog with Wordpress and Gatsby.js - Part 3

Collapse
 
iam_timsmith profile image
Tim Smith

Thanks! I'm glad it is helpful. I'm in the process of getting it on the Gatsby blog.

As far as the sorting of the blog posts, you should do this in graphql query. You could put something like this:

allWordpressPost(sort: { fields: [date], order: ASC })

There are some docs about it on the Gatsby site that explain it pretty well.