Okay, so I have a custom date field set up as 'm/d/Y H:i:s' and I'd like to echo that as 'M j'. How do I do this?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

if it stored in the format m/d/Y H:i:s, then you can do this wherever the date is echoed in your template:

echo date('M j',strtotime($custom_date));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.