term_id;
}
$automobile_car_services_related_args = array(
'category__in' => $automobile_car_services_category_ids,
'post__not_in' => array(get_the_ID()),
'posts_per_page' => 3,
'orderby' => 'random'
);
$automobile_car_services_related_query = new WP_Query($automobile_car_services_related_args);
if ($automobile_car_services_related_query->have_posts()) {
while ($automobile_car_services_related_query->have_posts()) {
$automobile_car_services_related_query->the_post(); ?>
' . esc_html__('No related posts found.', 'automobile-car-services') . '';
}
}
?>