Support

Account

Home Forums Front-end Issues Issue to display Permalink (ACF Relationships in Custom Post Type )

Unread

Issue to display Permalink (ACF Relationships in Custom Post Type )

  • 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; ?>
    
Viewing 1 post (of 1 total)

The topic ‘Issue to display Permalink (ACF Relationships in Custom Post Type )’ is closed to new replies.