Drupal show only date on time
In the node.tpl file add the following:
<span><?php print t(’!date’, array(’!date’ => format_date($node->created, ‘custom’, ‘D, Y-m-j’))); ?></span>
Where we add format_date ‘custom’
In the node.tpl file add the following:
<span><?php print t(’!date’, array(’!date’ => format_date($node->created, ‘custom’, ‘D, Y-m-j’))); ?></span>
Where we add format_date ‘custom’