我有一个侧边栏,我想显示最近的帖子。现在它显示标题,日期和摘录。日期显示我想要摆脱的时间。我用这个显示日期:$ 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并没有时间。提前谢谢。
答案 0 :(得分:28)
date('n-j-Y', strtotime($recent['post_date']));
这可以按照您想要的方式进行格式化。只需用循环替换循环中的$recent['post_date']
即可。
答案 1 :(得分:5)
虽然Syfaro的答案是正确的,但最佳做法是使用WordPress自己的功能。
这默认为WordPress管理设置(设置 - &gt;常规)中设置的格式,因此为将来的编辑提供了更易于访问的解决方案 - 如果您在多个站点中滚动代码,或者更重要的是如果您将其发布,则非常有用公开。
此外,请不要忘记escape output - 查看esc_html和esc_html_e
答案 2 :(得分:2)
将$recent["post_date"]
替换为mysql2date('n-j-Y', $recent['post_date'])
。
答案 3 :(得分:2)
date_i18n('l d/m/Y \à\s g:i', strtotime($item['time']))