Hello,
I am using:
{% set args = { post_type: 'tests', posts_per_page: 100, meta_key: 'date', orderby: 'meta_value', order: 'DESC', tax_query: [{taxonomy: 'category', field: 'term_id', terms: '1'}] } %}
{% set tests = mb.get_posts( args ) %}
Now I want to include a pagination after the loop, but when I use {{ mb.get_the_posts_navigation() }} I don't get any pagination.
I include the view as a shortcode in a page.
How can I include a pagination? Am i doing something wrong?
tnx