Hello Long,
I am having trouble finding the correct code to change date format to "dd month" AND have the month show in French.
For the moment I am using this code :
$meta = rwmb_meta( 'dlc_agenda_date' );
$meta = get_post_meta( get_the_ID(), 'dlc_agenda_date', true );
echo date_i18n( 'j F', $meta );
but it is pulling the actual date (the date it is today, whatever the date), not the value from my meta_key "dlc_agenda_date" as I would like it to...
Please let me know what I am not doing right...