Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active September 23, 2022 15:53
Show Gist options
  • Save spivurno/3708480 to your computer and use it in GitHub Desktop.
Save spivurno/3708480 to your computer and use it in GitHub Desktop.
Gravity Wiz // Populate Date: Year from Current Date
<?php
/**
* 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('Y-m-d', strtotime('+1 year'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment