WordPress如何将月份和日期分成两部分

发布于 2024-12-01 21:34:49 字数 115 浏览 0 评论 0原文

如何将“月”和“日”日期分成两个单独的部分,以便我可以将它们放在一起,如下所示:

在此输入图像描述

How can I split the "month" and "day" date into two seperate pieces so I can place them under each other like this:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晨光如昨 2024-12-08 21:34:49

要获取当前日期,您可以:

echo date('d');

对于当前月份:

echo date('m');

以月份的简短文本表示形式,三个字母:

echo date('M');

但是如果日期已经在字符串变量中,则可以对于日期:

echo date('d',strtotime('11/26/2011'));

对于月份:

echo date('M',strtotime('11/26/2011'));

对于完整的引用函数:

To obtain the current day you can:

echo date('d');

and for current month:

echo date('m');

in a short textual representation of a month, three letters:

echo date('M');

But if you have the date already in a string variable you can for day:

echo date('d',strtotime('11/26/2011'));

and for month:

echo date('M',strtotime('11/26/2011'));

For complete references of the functions:

度的依靠╰つ 2024-12-08 21:34:49
<p class="month"><?php echo get_the_date('M'); ?></p>
<p class="day"><?php echo get_the_date('d'); ?></p>
<p class="month"><?php echo get_the_date('M'); ?></p>
<p class="day"><?php echo get_the_date('d'); ?></p>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文