Forums

How to change the date format of recent posts? (1 post)

  1. forkhyun
    Member
    Posted 3 months ago #

    Hi,

    I am trying to change the date format of '$recent["post_date"]'. I tried lots of methods. However it seems hard to find the right solution.

    My code:

    <?php
    $args = array( 'numberposts' => '10', 'category' => 1, 'orderby' => 'post_date');
    $recent_posts = wp_get_recent_posts();
    foreach( $recent_posts as $recent ){

    echo '

  2. <span style="font-weight:bold">'.$recent["post_title"].'</span>'.' - '.$recent["post_date"].'
    '.substr($recent["post_content"],0,35).'...[view detail]

  3. ';
    }
    ?>

    I am trying to change '2012-02-02-00-00' to 'February 2012. I tried date("F Y", $recent["post_date"]). But it seemed it gave me unix time (January 1970)..

    Can anyone know how to convert my date format? Thank you in advance.

Reply

You must log in to post.

About this Topic

Tags