views:

244

answers:

1

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?

+1  A: 

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.

Dominic Rodger
geez, that was easy.. thanks:)