Created
July 20, 2015 18:37
-
-
Save sarah-hunter/5d8c7dcb3f6fc7336093 to your computer and use it in GitHub Desktop.
Display Code for FacetWP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php while ( have_posts() ) : the_post(); ?> | |
<div class="single-lesson"> | |
<h5><?php the_title(); ?></h5> | |
<p class="lesson-grade"><?php $terms = get_the_terms( $post->ID, 'subject' ); | |
foreach ( $terms as $term ) { echo '<span class="each-tag">'; echo $term->name; echo '</span>'; }?></p> | |
<p class="lesson-grade"><?php $terms = get_the_terms( $post->ID, 'grade' ); | |
foreach ( $terms as $term ) { echo '<span class="each-tag">'; echo $term->name; echo '</span>'; }?></p> | |
<p class="lesson-theme"><?php $terms = get_the_terms( $post->ID, 'theme' ); | |
foreach ( $terms as $term ) { echo '<span class="each-tag">'; echo $term->name; echo '</span>'; }?></p> | |
<p class="download-link"><a href="<?php the_field('lesson_plan'); ?>" target="_blank"><i class="fa fa-arrow-down fa-lg"></i></a></p> | |
</div> | |
<?php endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment