gpt4 book ai didi

php - 如何在 Wordpress 中格式化发布日期?

转载 作者:IT王子 更新时间:2023-10-29 00:20:37 25 4
gpt4 key购买 nike

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com