Support

Account

Home Forums Front-end Issues Date expiry issue Reply To: Date expiry issue

  • I’m not sure I understand what you are asking. Do you mean that you want to wait until a month has passed before showing “(Job Expired)”?

    
    $date = get_field('last_date', false, false);
    $date = new DateTime($date);
    $date->modify('+1 month');