我无法弄清楚如何仅显示我的wordpress帖子的输入日期中的月份和年份 有什么建议?它似乎不是wordpress控制面板的标准配置。
答案 0 :(得分:2)
您可以在此处设置日期格式:Admin
> Settings
> General
> Date Format
但是,您的主题可能未使用此设置。在这种情况下,您必须编辑主题并使用
<?php the_time(get_option('date_format')); ?>
在每个显示帖子/页面日期的文件中。
答案 1 :(得分:0)
请参阅http://php.net/manual/en/function.date.php
用法
<?php date('Y-m', strtotime($your_time_variable)); ?>