term_id;
}
$call_center_bpo_related_args = array(
'category__in' => $call_center_bpo_category_ids,
'post__not_in' => array(get_the_ID()),
'posts_per_page' => 3,
'orderby' => 'random'
);
$call_center_bpo_related_query = new WP_Query($call_center_bpo_related_args);
if ($call_center_bpo_related_query->have_posts()) {
while ($call_center_bpo_related_query->have_posts()) {
$call_center_bpo_related_query->the_post(); ?>
' . esc_html__('No related posts found.', 'call-center-bpo') . '';
}
}
?>