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?
<?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; ?>