admin管理员组文章数量:1392066
I use the following code to display links to the first post type(location) in the second post type(doctor page) But this code will output the link to the page we are on(doctor page). And the location pages link is not displayed. What's the problem? ACF Plugin Guides
<?php $locations = get_field('location');?>
<?php if( $locations ): ?>
<ul>
<?php foreach( $locations as $location ): ?>
<li>
<a href="<?php echo get_permalink( $location->ID ); ?>">
<?php echo get_the_title( $location->ID ); ?>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
本文标签: Issue to display Permalink (ACF Relationships in Custom Post Type )
版权声明:本文标题:Issue to display Permalink (ACF Relationships in Custom Post Type ) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744781525a2624744.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论