2018-07-20 15:27:33 +02:00
|
|
|
<?php $related = blogrow_related_posts(); ?>
|
2015-12-11 17:09:48 +01:00
|
|
|
|
|
|
|
<?php if ( $related->have_posts() ): ?>
|
|
|
|
|
|
|
|
<div class="pad">
|
2016-03-22 19:16:21 +01:00
|
|
|
<h4 class="heading"><?php esc_html_e('You may also like','blogrow'); ?></h4>
|
2015-12-11 17:09:48 +01:00
|
|
|
<ul class="related-posts group">
|
|
|
|
|
|
|
|
<?php while ( $related->have_posts() ) : $related->the_post(); ?>
|
|
|
|
<li class="related">
|
|
|
|
<article <?php post_class(); ?>>
|
|
|
|
|
|
|
|
<div class="related-thumbnail">
|
2018-09-08 16:54:16 +02:00
|
|
|
<a href="<?php the_permalink(); ?>">
|
2015-12-11 17:09:48 +01:00
|
|
|
<?php if ( has_post_thumbnail() ): ?>
|
2018-05-26 12:19:06 +02:00
|
|
|
<?php the_post_thumbnail('blogrow-medium'); ?>
|
2015-12-11 17:09:48 +01:00
|
|
|
<?php else: ?>
|
2020-07-12 12:36:27 +02:00
|
|
|
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/img/thumb-medium.png" alt="<?php the_title_attribute(); ?>" />
|
2015-12-11 17:09:48 +01:00
|
|
|
<?php endif; ?>
|
2019-07-29 21:21:44 +02:00
|
|
|
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-play"></i></span>'; ?>
|
|
|
|
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-volume-up"></i></span>'; ?>
|
|
|
|
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fas fa-star"></i></span>'; ?>
|
2015-12-11 17:09:48 +01:00
|
|
|
</a>
|
|
|
|
</div><!--/.related-thumbnail-->
|
|
|
|
|
|
|
|
<div class="related-inner">
|
|
|
|
|
|
|
|
<h4 class="related-title">
|
2018-09-08 16:54:16 +02:00
|
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
2015-12-11 17:09:48 +01:00
|
|
|
</h4><!--/.related-title-->
|
|
|
|
|
2018-07-20 15:22:53 +02:00
|
|
|
<div class="related-date"><?php the_time( get_option('date_format') ); ?></div>
|
2015-12-11 17:09:48 +01:00
|
|
|
|
|
|
|
</div><!--/.related-inner-->
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</li><!--/.related-->
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php wp_reset_postdata(); ?>
|
|
|
|
|
|
|
|
</ul><!--/.related-posts-->
|
|
|
|
</div><!--/.pad-->
|
|
|
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2017-03-25 18:19:46 +01:00
|
|
|
<?php wp_reset_postdata(); ?>
|