How do I display the current date on my home page?
Does anyone have a snippet with the correct code?
Or any other suggestions?

Thanks,
Moondrop

Comments

gonzocoder’s picture

I guess the easiest way would be to create a custom block and add some php to display the date, e.g.:

echo date('Y M D');

or

echo date('y m d');

You can amend it to whatever format you like. Try here for more formats: http://php.net/date

Oh yeah, and don't forget to set the input type for the block to php :-)

add1sun’s picture

Or you can put that code directly in your page.tpl.php file for your theme wherever you want it.

Drupalize.Me, The best Drupal training, available all the time, anywhere!