我有一个侧边栏,我想在其中显示最新的帖子。现在它显示标题、日期和摘录。日期显示我想摆脱的时间。我使用这个显示日期:$recent["post_date"]
<?php
$args = array( 'numberposts' => '3' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li id="sidebar_text"><b>'.$recent["post_title"].'</b></li><li style="font-size:12px">'.$recent["post_date"].'</li><li><i style="font-size:15px">'.$recent["post_excerpt"].'</i><a href="'.get_permalink($recent["ID"]).'"> Read More</a></li>';
}
?>
它显示这样的日期:2013-08-11 18:29:04,我希望它像这样 8-11-2013 并且没有时间。提前致谢。