Skip to content

Instantly share code, notes, and snippets.

@NickToye
Created August 8, 2012 13:43
Show Gist options
  • Save NickToye/3295111 to your computer and use it in GitHub Desktop.
Save NickToye/3295111 to your computer and use it in GitHub Desktop.
<?php if ( get_field( 'meeting_documents_agendas' || 'meeting_documents_minutes')) : ?>
<h3>Meeting Documents</h3>
<table class="downloads">
<thead>
<tr>
<th>Document</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
<?php if ( get_field( 'meeting_documents_agendas' ) ) : ?>
<tr>
<td>Agendas</td>
<td><a href="<?php echo get_field('meeting_documents_agendas');?>">Download file</a></td>
</tr>
<? endif ?>
<?php if ( get_field( 'meeting_documents_minutes' ) ) : ?>
<tr>
<td>Minutes</td>
<td><a href="<?php echo get_field('meeting_documents_minutes');?>">Download file</a></td>
</tr>
<? endif ?>
</tbody>
</table>
<? endif ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment