尽管如此,您能否帮助我如何在帖子,分类标准帖子中自动更新标题和元描述中的月份和年份? 非常感谢。
答案 0 :(得分:0)
如果您想使用创建/更新帖子的日期,您可以使用wordpress功能轻松完成此操作:
<?php echo get_the_date($format, get_the_ID()); ?>
所以标题看起来像这样:
<title><?php echo get_the_date('j.n.Y', $postID); ?></title>
这是codex上的get_the_date()函数。