Would like to display list of candidates & its link
if any one click on the candidates it should land their CPT page
but I couldnt pull those candidate url
here is my code
{% set candi = {post_type: 'candidate', posts_per_page: 5} %}
{% set candidates = mb.get_posts( candi ) %}
{% for candidate in candidates %} <br/>
1. Candidate url: {{ post.url }} <br/>
2. {{ candidate.url}} <br/>
3. {{ candidate.post_title }} <br/>
{% endfor %}