Wordpress日期分割 - 额外逗号和短月

时间:2017-10-08 00:53:28

标签: php wordpress function

我使用以下代码将WordPress日期拆分为3行。我在约会后得到一个额外的逗号。

截图

enter image description here

其次我希望这个月像'九月'或'十月'或'十一月'那样短暂,等等。只是前三个字母。

我的代码

<span class="post-date-day">
        <?php $data = explode(' ', get_the_date()); echo trim($data[1] .'</span>').'
        <span class="post-date-month">'.$data[0] .'</span>
        <span class="post-date-year">'.$data[2]; ?></span>

我的问题

  1. 如何在屏幕截图中的17日之后删除该逗号?

  2. 如何缩短月份,如“九月”或“十月”或“十一月”等。只是前3个字母。

1 个答案:

答案 0 :(得分:2)

而不是爆炸日期然后修复它。

您应该使用函数get_the_date( [string $format], [int $post_id] );

上的格式选项
<span class="post-date-day"><?= get_the_date('j') ?></span>
<span class="post-date-month"><?= get_the_date('M') ?></span>
<span class="post-date-year"><?= get_the_date('Y') ?></span>

可以找到PHP日期格式here