File: /home/dermova/www/india/wp-content/themes/ri-colias/included/templates/related_posts.php
<?php
$orig_post = $post;
global $post;
$categories = get_the_category($post->ID);
if ($categories) {
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$args = array(
'category__in' => $category_ids,
'post__not_in' => array($post->ID),
'posts_per_page' => 3, // Number of related posts that will be shown.
'ignore_sticky_posts' => 1,
'orderby' => 'rand'
);
$my_query = new wp_query( $args );
if( $my_query->have_posts() ) { ?>
<div class="post-related"><div class="post-box"><h4 class="post-box-title widget-title"><span class="center"><?php esc_html_e('Related post', 'ri-colias'); ?></span></h4></div>
<div class="row">
<?php while( $my_query->have_posts() ) {
$my_query->the_post();?>
<div class="item-related col-sm-4 col-md-4">
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) : ?>
<a href="<?php echo get_permalink() ?>"><?php the_post_thumbnail('related-image'); ?></a>
<?php endif; ?>
<h3 class="post-title"><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h3>
</div>
<?php
}
echo '</div></div>';
}
}
$post = $orig_post;
wp_reset_postdata();
?>