2018-10-31 13:03:44 +01:00
|
|
|
<?php $related = blogside_related_posts(); ?>
|
2016-02-03 11:28:05 +01:00
|
|
|
|
|
|
|
<?php if ( $related->have_posts() ): ?>
|
|
|
|
|
|
|
|
<h4 class="heading">
|
2018-10-31 13:03:44 +01:00
|
|
|
<i class="fa fa-hand-o-right"></i><?php esc_html_e('You may also like...','blogside'); ?>
|
2016-02-03 11:28:05 +01:00
|
|
|
</h4>
|
|
|
|
|
|
|
|
<ul class="related-posts group">
|
|
|
|
|
|
|
|
<?php while ( $related->have_posts() ) : $related->the_post(); ?>
|
|
|
|
<li class="related post-hover">
|
|
|
|
<article <?php post_class(); ?>>
|
|
|
|
|
|
|
|
<div class="post-thumbnail">
|
2018-09-08 17:23:20 +02:00
|
|
|
<a href="<?php the_permalink(); ?>">
|
2016-02-03 11:28:05 +01:00
|
|
|
<?php if ( has_post_thumbnail() ): ?>
|
2018-10-31 13:03:44 +01:00
|
|
|
<?php the_post_thumbnail('blogside-medium'); ?>
|
2017-12-16 20:58:17 +01:00
|
|
|
<?php elseif ( get_theme_mod('placeholder') != 'off' ): ?>
|
2018-05-31 18:21:07 +02:00
|
|
|
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title_attribute(); ?>" />
|
2016-02-03 11:28:05 +01:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-play"></i></span>'; ?>
|
|
|
|
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-volume-up"></i></span>'; ?>
|
|
|
|
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-star"></i></span>'; ?>
|
|
|
|
</a>
|
|
|
|
</div><!--/.post-thumbnail-->
|
|
|
|
|
|
|
|
<div class="related-inner">
|
|
|
|
|
|
|
|
<h4 class="post-title">
|
2018-09-08 17:23:20 +02:00
|
|
|
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
|
2016-02-03 11:28:05 +01:00
|
|
|
</h4><!--/.post-title-->
|
|
|
|
|
|
|
|
<div class="post-meta group">
|
2018-07-20 16:39:30 +02:00
|
|
|
<p class="post-date"><?php the_time( get_option('date_format') ); ?></p>
|
2016-02-03 11:28:05 +01:00
|
|
|
</div><!--/.post-meta-->
|
|
|
|
|
|
|
|
</div><!--/.related-inner-->
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</li><!--/.related-->
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php wp_reset_postdata(); ?>
|
|
|
|
|
|
|
|
</ul><!--/.post-related-->
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2017-03-25 18:19:39 +01:00
|
|
|
<?php wp_reset_postdata(); ?>
|