Skip to content

Instantly share code, notes, and snippets.

@luclemo
Forked from spivurno/gist:5065194
Last active February 25, 2017 19:24
Show Gist options
  • Save luclemo/d5b6e0730f1f48bd5c75b7878a9d2678 to your computer and use it in GitHub Desktop.
Save luclemo/d5b6e0730f1f48bd5c75b7878a9d2678 to your computer and use it in GitHub Desktop.
Use Gravity Forms Conditional Logic with Dates #wordpress #gravityForms
<?php
/**
* Use Gravity Forms Conditional Logic with Dates
* http://gravitywiz.com/use-gravity-forms-conditional-logic-with-dates/
*/
add_filter("gform_field_value_timestamp", "gwiz_populate_timestamp");
function gwiz_populate_timestamp( $value ){
return time();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment