File: /var/www/html/wp-content/themes/ganryujima_new_1602/single/_links.php
<?php $posts = get_field('links'); if( $posts ): ?>
<article class="l-paper l-article m_single_links table">
<h2>関連記事</h2>
<ul>
<?php foreach( $posts as $p ): ?>
<li>
<a href="<?php echo get_permalink( $p->ID ); ?>">・<?php echo get_the_title( $p->ID ); ?></a>
</li>
<?php endforeach; ?>
</ul>
</article>
<?php endif; ?>
<?php if( have_rows('mov_links')): ?>
<article class="l-paper l-article m_single_links table">
<h2>関連動画</h2>
<ul>
<?php while( have_rows('mov_links') ): the_row(); ?>
<li>
<a href="<?php the_sub_field('mov_url',$post->ID); ?>">・<?php the_sub_field('mov_url',$post->ID); ?></a>
</li>
<?php endwhile; ?>
</ul>
</article>
<?php endif; ?>
<?php if(get_next_post() || get_previous_post()) { ?>
<div class="m_single_paging">
<ul class="table">
<li>
<?php previous_post_link('<strong class="table"><i class="fa fa-angle-left"></i>%link</strong>'); ?>
</li>
<li>
<?php next_post_link('<strong class="table">%link<i class="fa fa-angle-right"></i></strong>'); ?>
</li>
</ul>
</div>
<?php } ?>