作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有一个侧边栏,我想在其中显示最新的帖子。现在它显示标题、日期和摘录。日期显示我想摆脱的时间。我用这个显示日期:$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 并且没有时间。提前致谢。
最佳答案
date('n-j-Y', strtotime($recent['post_date']));
这会按照您想要的方式进行格式化。只需用它替换循环中的 $recent['post_date']
。
关于php - 如何在 Wordpress 中格式化发布日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18175498/
我是一名优秀的程序员,十分优秀!