Display post date as 04/26/2013

I want to modify the date display of the post entries from current format:

April 26, 2013

Read More

to this:

04/26/2013

Where in the code can I make this change?

Thank you in advance!

Related posts

Leave a Reply

2 comments

  1. the_time( 'm/d/Y' );
    

    or

    the_date( 'm/d/Y' );
    

    Note, the_date() will not print the same value twice. If a second post would get the same output you get nothing.

    If your theme doesn’t set a fixed value, like Twenty Twelve …

    get_the_date()
    

    … then the format is taken from your settings in Settings/General Settings:

    enter image description here

    You can change the format here, no need to change the theme.