Hello
This is simple post listing for a cpt which basicly works.
{% set args = { post_type: 'fg-dev', posts_per_page: -1 } %}
{% set posts = mb.get_posts( args ) %}
{% for post in posts %}
<ul>
<li style="line-height: 1";><a href="{{ post.post_url }}">{{ post.post_title }}</a></li>
</ul>
{% endfor %}
The only thing not working is the permalink. The expressions <post.post_url> or <post.post_slug> and many others I tried do not work. What is the right expression for this and where can find this on the internet? I was not able to find this.
Thanks in Advance for your help
François