I am creating a page that will display all the posts (CPT) for a given custom taxonomy. It was simple to output the post title but it is only showing the first 10, like a normal wp_query would show. How can I make it display them all? Here is the test code (entire view code) I have that only displays 10 of the 18 CPTs.
{{ term.name }}<br />
{% for post in query.posts %}
{{ post.title }}<br>
{% endfor %}