Edit file File name : related-posts.php Content :<?php /** * Related posts based on categories and tags. * */ $vw_construction_estate_related_posts_taxonomy = get_theme_mod( 'vw_construction_estate_related_posts_taxonomy', 'category' ); $vw_construction_estate_post_args = array( 'posts_per_page' => absint( get_theme_mod( 'vw_construction_estate_related_posts_count', '2' ) ), 'orderby' => 'rand', 'post__not_in' => array( get_the_ID() ), ); $vw_construction_estate_tax_terms = wp_get_post_terms( get_the_ID(), 'category' ); $vw_construction_estate_terms_ids = array(); foreach( $vw_construction_estate_tax_terms as $tax_term ) { $vw_construction_estate_terms_ids[] = $tax_term->term_id; } $vw_construction_estate_post_args['category__in'] = $vw_construction_estate_terms_ids; if(get_theme_mod('vw_construction_estate_related_post',true)==1){ $vw_construction_estate_related_posts = new WP_Query( $vw_construction_estate_post_args ); if ( $vw_construction_estate_related_posts->have_posts() ) : ?> <div class="related-post"> <h3><?php echo esc_html(get_theme_mod('vw_construction_estate_related_post_title','Related Post'));?></h3> <div class="row"> <?php while ( $vw_construction_estate_related_posts->have_posts() ) : $vw_construction_estate_related_posts->the_post(); ?> <?php get_template_part('template-parts/grid-layout'); ?> <?php endwhile; ?> </div> </div> <?php endif; wp_reset_postdata(); } Save