Date Format in postsz

Discussion in 'Infoway WordPress Theme' started by kissakk, Aug 10, 2013.

  1. kissakk

    kissakk New Member

    Joined:
    Aug 8, 2013
    Messages:
    1
    Likes Received:
    0
    Hi there,

    great theme!
    I want to change to date format in the preview and the post from "MM, DD, YY" to the regional settings "dd.mm.yy"
    Is there an possibility to change it easy?
    If not, in which code do I have to do that change?

    Best regards
    Olaf
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to blog.php present in your theme directory and replace current code

    Code:
    <?php echo get_the_time('M, d, Y') ?>
    with code given below

    Code:
    <?php echo get_the_time('d, m, Y') ?>
    Sending image for reference

    2013-08-12_1313.png

    Use same process for others also.
     

Share This Page