term_id;
}
$bakery_cafe_related_args = array(
'category__in' => $bakery_cafe_category_ids,
'post__not_in' => array(get_the_ID()),
'posts_per_page' => 3,
'orderby' => 'random'
);
$bakery_cafe_related_query = new WP_Query($bakery_cafe_related_args);
if ($bakery_cafe_related_query->have_posts()) {
while ($bakery_cafe_related_query->have_posts()) {
$bakery_cafe_related_query->the_post(); ?>
' . esc_html__('No related posts found.', 'bakery-cafe') . '';
}
}
?>