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 '
'.substr($recent["post_content"],0,35).'...[view detail]
';
}
?>
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.