spivurno
9/12/2012 - 4:47 PM

Gravity Wiz // Populate Date: Year from Current Date

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'));
}