Skip to content

Instantly share code, notes, and snippets.

@spivurno
Created September 12, 2012 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/3708032 to your computer and use it in GitHub Desktop.
Save spivurno/3708032 to your computer and use it in GitHub Desktop.
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'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment