×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: PHP
Posted by: Eric De Kock
Added: Feb 26, 2017 11:56 PM
Views: 2334
  1.  <?php if (have_rows('downloads')): ?>
  2.                                     <h2>Downloads</h2>
  3.                                     <ul class="list-angle-right download-list">
  4.                                         <?php while (have_rows('downloads')) : the_row(); ?>
  5.                                             <li><?php echo do_shortcode('[download id="' . get_sub_field('file') . '" template="title"]'); ?></li>
  6.                                     <?php endwhile; ?>
  7.                                     </ul>
  8.                                 <?php endif; ?>