I want to show all members that have their birthday this month (February).
They are all shown, but not in the proper order of the day. It seems really random.
This is the code I have: (verjaardag=birthday, dag=day, maand=month)
<h3>FEBRUARI</h3>
{% set args = { meta_key:'verjaardag_maand', meta_value:'2', posts_per_page: -1, orderby: { meta_key: 'verjaardag_dag', meta_value_num: 'verjaardag_dag'}, order: 'asc' } %}
{% set users = mb.get_users( args ) %}
{% for user in users %}
{{ user.verjaardag_dag }} Februari: {{ user.display_name }}
{% endfor %}
I can't figure out how to set the orderby properly.