23

我有一个侧边栏,我想在其中显示最新的帖子。现在它显示标题、日期和摘录。日期显示我想摆脱的时间。我使用这个显示日期:$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 并且没有时间。提前致谢。

4

4 回答 4

45
date('n-j-Y', strtotime($recent['post_date']));

这将按照您想要的方式对其进行格式化。只需用它替换$recent['post_date']循环中的。

于 2013-08-11T18:57:57.210 回答
8

虽然 Syfaro 的回答是正确的,但最佳做法是为此使用 WordPress 自己的功能。

获取日期

这默认为在 WordPress 管理设置(设置 -> 常规)中设置的格式,因此为将来的编辑提供了更易于访问的解决方案 - 如果您在多个站点中滚动代码特别有用,或者更重要的是,如果您公开发布它。

另外,不要忘记转义输出- 查看esc_htmlesc_html_e

于 2013-08-11T19:52:21.990 回答
5
date_i18n('l d/m/Y \à\s g:i', strtotime($item['time']))
于 2019-09-29T11:18:00.837 回答
3

替换$recent["post_date"]mysql2date('n-j-Y', $recent['post_date'])

于 2017-09-22T20:33:29.847 回答