Does anyone know how to show the date without hiding the posted by? Thanks

Comments

bchoc’s picture

This is really easy, actually. Assuming you're using a phptemplate-based theme you can print either the creation date or creator's username alone using the variables $date and $name respectively.

For example just put this somewhere in your node.tpl.php file:
print $date;

ultrajet’s picture

Thanks everyone! I'll check them out.