Calculate future date 时间:2011-12-10 作者:Kirk Ward 我想根据帖子发布的日期计算未来的日期,并在帖子内容中使用它。我可以通过以下方式回复发布后的日期:echo the_date(\'Y-m-d\'); 如何计算未来日期? 1 个回复 SO网友:onetrickpony try$future_timestamp = strtotime(\'+1 week\', get_the_date(\'Y-m-d\')); echo date(\'Y-m-d\', $future_timestamp); or$future_timestamp = get_the_date(\'U\') + (60 * 60 * 24 * 7); echo date(\'Y-m-d\', $future_timestamp); 结束 文章导航