Ease theme - reorder posts on homepage

Hello - I am a new Ghost user, experimenting in the trial period. While I like the reverse chronology on the tag pages, the homepage in Ease displays oldest first under the tag headings. I’d like to reverse this but darned if I can find the code. Can anyone point me to where it is?

Hi @lsjohnson,

I think you are looking for this part:
image

For the get helper you can specify the sort order for one of the tag attributes.

Sorting by name:

{{#get "tags" limit="all" include="count.posts" order="name asc"}}

Sorting by the number of posts:

{{#get "tags" limit="all" include="count.posts" order="count.posts desc"}}
1 Like

Thank you! That’s exactly what I needed! :smile: