Gravity Wiz // Populate Date: Year from Current Date
/** * Populate Date: Year from Current Date */ add_filter('gform_field_value_year_from_date', 'gw_year_from_date'); function gw_year_from_date() { return date('m/d/Y', strtotime('+1 year')); }