Show related post from the same category
Description
Place inside the single.php file under the post query
Place inside the single.php file under the post query
PHP Source Code
<!--Related Post Query Ends-->
<?php
$related = get_posts( array( 'category__in' => wp_get_post_categories($post->ID), 'numberposts' => 5, 'post__not_in' => array($post->ID) ) );
if( $related ) foreach( $related as $post ) {
setup_postdata($post); ?>
<!--Post Starts-->
<!-- Post Ends-->
<?php }
wp_reset_postdata(); ?>
<!--Related Post Query Ends-->