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 )