duncanstephen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Date format not displaying correctly@anlino – Many thanks for all your help. I have now updated the translation and the issue is now fixed for me.
Forum: Fixing WordPress
In reply to: Date format not displaying correctly@daveoxton – Excellent detective work. I can confirm that after changing the Site Language to English (United States), the date format displays correctly for me as well.
Forum: Fixing WordPress
In reply to: Date format not displaying correctlyI have experimented a bit with different format strings, with some interesting results, which may help with debugging.
Foutputs “Dec”FFoutputs “DecDecember”But placing F after any other letter doesn’t have the same effect. For example:
j F YFoutputs “9 Dec 2018Dec”I also tried changing the code that outputs the date to
<?php the_time('j F Y')); ?>— but this has the same problem.- This reply was modified 7 years, 3 months ago by duncanstephen.
Forum: Fixing WordPress
In reply to: Date format not displaying correctly@anlino – Thanks for the suggestion Anders. I have tried deactivating each of the plugins I’m running, and activated the Twenty Nineteen theme. But the issue persists.
Another thing that I forgot to mention previously is that I’m running multisite, and the issue exists in each site in the network.
Forum: Fixing WordPress
In reply to: Date format not displaying correctlyHi @anlino, thanks for your reply.
Here’s the code I’m using to output the date.
<?php the_time(get_option('date_format')); ?>I’ll also point out that when I try to edit the date format under General Settings in the admin interface, the preview also displays incorrectly even though I have set it as
j F Y.