Pretty simple question here, hoping for a simple answer.
I want to display my wordpress time output as DD.MM.YY
So today it would be 10.11.09
I couldn't find anything in the wordpress codex, I supposed its a little php?
Pretty simple question here, hoping for a simple answer.
I want to display my wordpress time output as DD.MM.YY
So today it would be 10.11.09
I couldn't find anything in the wordpress codex, I supposed its a little php?
Try:
<?php the_time('d.m.y') ?>
See the wordpress documentation on Formatting Date and Time, and the PHP documentation for the syntax of the format string.