Wordpress ACF-日期格式 [英] Wordpress ACF - Date format

查看:112
本文介绍了Wordpress ACF-日期格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用日期字段来呈现日期,如下所示:2014年11月15日。但我也想在页面的其他位置显示日期,如2014年11月15日。是否有可能以两种不同的格式显示日期?

I am using the date field to render out the date to look like: 11/15/2014. But I want to also display the date like November 15, 2014 else where on the page. Is it somehow possible to render out the date in two different formats?

<?php the_field('date'); ?>


推荐答案

您可以使用 get_field ,然后可以将日期格式更改为所需的任何格式。

You can use get_field and then you can change the date format to whatever you want.

$date = get_field('date');
$date2 = date("F j, Y", strtotime($date));

这篇关于Wordpress ACF-日期格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆