尝试为乐队主题构建一个简单的事件日历。只是想知道是否有一种简单的方法来实现这一目标。我试图让它变得尽可能简单,所以我试图避免使用免费或高级插件。
我可以使用与此相似的样式: Screenshot
编辑:
<span class="show_day">
<?php $date = new DateTime(get_field('show_date'));
echo $date->format('d'); ?></span>
<span class="show_month"><?php $date = new DateTime(get_field('show_date'));
echo $date->format('F'); ?></span>
有更好的方法吗?
答案 0 :(得分:6)
我是这样做的:
$date = new DateTime(get_field('date_field'));
echo $date->format('d F'); // should print 07 August
echo $date->format('h:i A'); // should print 09:30 PM
查看function.date和datetime.format。
<span class="date"><?php echo $date->format('d F'); ?></span>
<span class="time"><?php echo $date->format('h:i A'); ?></span>