How can I order all blog articles by date instead of handler?

Hi,

I created a custom template for getting all the articles on a page. Currently I am using loop like

{% assign blog_handles = “dog-owner-hacks,general-health” | split: “,” %}
{% for handle in blog_handles %}
{% paginate blogs[handle].articles by 1000 %}
{% for article in blogs[handle].articles %}

I am getting results like
First all articles of first blog handler i.e dog-owner order by date desc

Then all articles of second blog handler i.e. genral-health

Is there a way to get all articles order by date instead of the order by handler.

Please let me know if you have any solutions.

Thanks

I’m looking to do the exact same thing, Did you figure it out in the end?