投稿が公開された日付に基づいて将来の日付を計算し、それを投稿のコンテンツに使用します。
私はポスト発行日をエコーすることができます:
echo the_date('Y-m-d');
将来の日付はどのように計算できますか?
やってみる
$future_timestamp = strtotime('+1 week', get_the_date('Y-m-d'));
echo date('Y-m-d', $future_timestamp);
または
$future_timestamp = get_the_date('U') + (60 * 60 * 24 * 7);
echo date('Y-m-d', $future_timestamp);