forked from giorgioriccardi/reviews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreview-info.php
37 lines (34 loc) · 1.23 KB
/
review-info.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
* Template that displays movie info in a box
* Kicks in on single movie reviews and index pages
*/
?>
<div class="movie-info clear">
<?php
// Do we have a featured image? If so, display it
if (has_post_thumbnail()){
echo '<figure class="movie-poster">';
the_post_thumbnail('poster-single');
echo '</figure>';
}
?>
<div class="movie-data">
<div class="movie-tax">
<?php echo get_the_term_list( $post->ID, 'genre', '<h4 class="movie-data-title">Genre</h4>', ', ', '' ); ?>
</div>
<div class="movie-tax">
<?php echo get_the_term_list( $post->ID, 'feature', '<h4 class="movie-data-title">Features</h4>', ', ', '' ); ?>
</div>
<div class="movie-tax">
<?php echo get_the_term_list( $post->ID, 'mood', '<h4 class="movie-data-title">Moods</h4>', ', ', '' ); ?>
</div>
<div class="movie-tax">
<?php echo get_the_term_list( $post->ID, 'rating', '<h4 class="movie-data-title">Rating</h4>', ', ', '' ); ?>
</div>
</div>
<div class="short-review">
<h4 class="movie-data-title">Quick Review</h4>
<?php the_excerpt(); ?>
</div>
</div><!-- .movie-info -->