How can i make my most recent blog post appear first when people click “BLOG” on my main menu. It always shows the oldest post.
1 Like
Hi @edward1000 ,
What theme are you using? You should be able to include sorting in your articles but using the code below as reference
{%- assign sorted_blogs = blogs.articles | sort: "publised_at" -%}
{%- for article in sorted_blogs -%}
render you article here....
{%- endfor -%}