/home/lnzliplg/www/wp-content/themes/lawyer-hub/template-parts/post/related-post.php
<?php

$lawyer_hub_post_args = array(
    'posts_per_page'    => get_theme_mod( 'lawyer_hub_related_post_per_page', 3 ),
    'orderby'           => 'rand',
    'post__not_in'      => array( get_the_ID() ),
);

$lawyer_hub_number_of_post_columns = get_theme_mod('lawyer_hub_related_post_per_columns', 3);

$lawyer_hub_col_lg_post_class = 'col-lg-' . (12 / $lawyer_hub_number_of_post_columns);

$lawyer_hub_related = wp_get_post_terms( get_the_ID(), 'category' );
$lawyer_hub_ids = array();
foreach( $lawyer_hub_related as $term ) {
    $lawyer_hub_ids[] = $term->term_id;
}

$lawyer_hub_post_args['category__in'] = $lawyer_hub_ids; 

$lawyer_hub_related_posts = new WP_Query( $lawyer_hub_post_args );

if ( $lawyer_hub_related_posts->have_posts() ) : ?>
        <div class="related-post-block">
        <h3 class="text-center mb-3"><?php echo esc_html(get_theme_mod('lawyer_hub_related_post_heading',__('Related Posts','lawyer-hub')));?></h3>
        <div class="row">
            <?php while ( $lawyer_hub_related_posts->have_posts() ) : $lawyer_hub_related_posts->the_post(); ?>
                <div class="<?php echo esc_attr($lawyer_hub_col_lg_post_class); ?> col-md-6">
                    <div id="category-post">
                        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
                            <div class="page-box">
                                <?php if(has_post_thumbnail()) { ?>
                                        <?php the_post_thumbnail();  ?>    
                                <?php } ?>
                                <div class="box-content text-start">
                                    <h4 class="text-start py-2"><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php the_title_attribute(); ?>"><?php the_title();?></a></h4>
                                    
                                    <p><?php echo wp_trim_words(get_the_content(), get_theme_mod('lawyer_hub_excerpt_count',10) );?></p>
                                    <?php if(get_theme_mod('lawyer_hub_remove_read_button',true) != ''){ ?>
                                    <div class="readmore-btn text-start mb-1">
                                        <a href="<?php echo esc_url( get_permalink() );?>" class="blogbutton-small" title="<?php esc_attr_e( 'Read More', 'lawyer-hub' ); ?>"><?php echo esc_html(get_theme_mod('lawyer_hub_read_more_text',__('Read More','lawyer-hub')));?></a>
                                    </div>
                                    <?php }?>
                                </div>
                                <div class="clearfix"></div>
                            </div>
                        </article>
                    </div>
                </div>
            <?php endwhile; ?>
        </div>
    </div>
<?php endif;
wp_reset_postdata();