Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

shortocdoe-lunch menus

// Add Shortcode
function show_lunch_menus() {

	<?php if ( have_rows( 'menu_pdfs' ) ) : ?>
	<div class="lunch-menus">
	<h2>Upcoming Weekly Lunch Menus</h2>
		<?php while ( have_rows( 'menu_pdfs' ) ) : the_row(); ?>
			<?php $pdf = get_sub_field( 'pdf' ); ?>
			<?php if ( $pdf ) { ?>
	<li class="hkb-article-attachment__item">
	    <a class="hkb-article-attachment__link" href="<?php echo $pdf['url']; ?>" <?php echo $download; ?>>
	        <div class="hkb-article-attachment__img">
	            <svg class="hkb-article-attachment__icon" width="40" height="40" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1152 512v-472q22 14 36 28l408 408q14 14 28 36h-472zm-128 32q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z"/></svg>
	<span>.pdf</span>
	        </div>      
	        <div class="hkb-article-attachment__content">  
	            <span class="hkb-article-attachment__title">        
	                <?php echo $pdf['filename']; ?>
	            </span>
	        </div>
	    </a>
	</li>
			<?php } ?>
		<?php endwhile; ?>
	</div>
	<?php else : ?>
		<?php // no rows found ?>
	<?php endif; ?>

}
add_shortcode( 'lunch_menus', 'show_lunch_menus' );