Hey folks,
It's been a couple of months and I'm still seeking an answer to this:
In Publisher, the article published date displays as simply month and date - how can I get the year to show as well?
Thank you.
<time datetime="<?php echo JHtml::_('date', $this->item->created, DATE_W3C); ?>">
<?php echo JHtml::_('date', $this->item->created, JText::_('d M')); ?>
</time>
<?php echo JHtml::_('date', $this->item->created, JText::_('d M Y')); ?>
article > time {font-size: 22px; }
<?php echo JHtml::_('date', $this->item->created, JText::_('F j, Y')); ?>
<?php echo JHtml::_('date', $this->item->created, JText::_('F j Y')); ?>