I have the following code:
$openingHoursPost = get_post($openingHoursID);
$openingHours = $openingHoursPost->post_content;
The output should be like this: (It's how I wrote my post)
Mon-Fri
09:00 - 20:00
Sat
10:00 - 18:00
Sun
10:00 - 16:00
But what I get is this:
Mon-Fri 09:00 - 20:00 Sat 10:00 - 18:00 Sun 10:00 - 16:00
Why do I not get line breaks?