Hi
We use the following code in a Meta Box view to display the date of a post:
<span><strong>Publication Date:</strong> {{ mb.get_post_meta( post.ID, 'date_created', true ) }}</span>
However, while it displays the date, it doesn't display it correctly.
WordPress settings have the Date Format as F j, Y. However, rather than displaying the date as F j, Y like we want, the Meta Box view shows yyy-mm-dd.
Here is an example page: https://thedockforlearning.org/series/introduction-to-diverse-learners/?swcfpc=1
How can we make Meta Box display the date formatted correctly?