我发现没有办法从这样的函数中获取格式化日期
echo get_the_date($post->ID, \'d M Y\');
get_the_date
仅适用于当前
$post
. 如果我使用
get_posts()
如何设置日期格式。使用纯PHP,我可以执行以下操作。。。
echo DateTime::createFromFormat(\'Y-m-d h:i:s\', $cp->post_date)->format(\'d M Y\');
但时间有点长,我不知道是否有必要创建
DateTime
对象,可能是浪费资源?