Автоматическая смена даты

функция
два дня вперед

$curDate = strtotime(get_field( "время_акции", 2 ));
while (getdate()[0] > $curDate) {
	$curDate = ($curDate + ( 2 * (60*60*24) ));
}
update_field( 'время_акции', date('d.m.Y', $curDate), 2 );

add_shortcode( 'promoDate', 'promoDateFunction' );
function promoDateFunction(){
	return get_field( "время_акции", 2 );
}

два месяца назад

$curDate = strtotime(get_field( "obj_date", 2 ));
while (getdate()[0] > $curDate) {
    $curDate = ($curDate + ( 2 * (60*60*720) ));
}

$curDate = ($curDate - ( 4 * (60*60*720) ));

update_field( 'obj_date', date('j.M.Y', $curDate), 2 );

add_shortcode( 'promoDate', 'promoDateFunction' );
function promoDateFunction(){
    return get_field( "obj_date", 2 );
}

шорткод [promoDate]