How can I order posts in MB views based on title or custom field value? Ascending or descending, etc.?
For example, with the following MB views template code:
<h2>
Presenters
</h2>
<div class="presenters_container">
{% for post in relationships.events_presenters_relationship.to %}
<a href="{{ post.url }}">
<span class="presenter_card">
<img src="{{ post.thumbnail.medium_large.url }}" width="{{ post.thumbnail.medium_large.width }}" height="{{ post.thumbnail.medium_large.height }}" alt="{{ post.thumbnail.medium_large.alt }}">
<h3>
{{ post.title }}
</h3>
</span>
</a>
{% endfor %}
Please let me know some specific examples of what I need to add to the code and where I need to add it, as I am not fluent with php.