term_id;
}
$automobile_rental_related_args = array(
'category__in' => $automobile_rental_category_ids,
'post__not_in' => array(get_the_ID()),
'posts_per_page' => 3,
'orderby' => 'rand'
);
$automobile_rental_related_query = new WP_Query($automobile_rental_related_args);
if ($automobile_rental_related_query->have_posts()) {
while ($automobile_rental_related_query->have_posts()) {
$automobile_rental_related_query->the_post(); ?>
' . esc_html__('No related posts found.', 'automobile-rental') . '';
}
}
?>