$doctors = get_field('doctors');
if( $doctors ): ?>
<ul>
<?php foreach( $doctors as $post):
<?php setup_postdata($post); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <!--Выводим ссылку на страницу доктора-->
</li>
<?php endforeach; ?>
</ul>
<?php wp_reset_postdata(); ?>
<?php endif;