Get all blog posts from list exceeding supported function limit in HUBL
Hello,
Is there a way to get a list of all blog posts in HUBL from a blog list that exceeds the function limit? I want to do something like below, but only the first 200 blog posts show.
{% set news = blog_recent_posts('5268670713', blog_total_post_count('5268670713')) %} {% for post in news %} <div class="post-item"> <a class="post-item__title" href="{{ post.absolute_url }}" style="color: #000;">{{ post.title }}</a> </div> {% endfor %}