Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/1586d03a8aca17d2cce2111c9084ff85 to your computer and use it in GitHub Desktop.
Save spivurno/1586d03a8aca17d2cce2111c9084ff85 to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Forms // Modify Date Format for Custom Field
<?php
/**
* Gravity Wiz // Gravity Forms // Modify Date Format for Custom Field
* http://graivtywiz.com/
*/
add_filter( 'gform_post_data', function( $data ) {
// Update both instances of "my_date_custom_field" to your custom field name.
// Update 'Y-m-d' to your desired date format.
$data['post_custom_fields']['my_date_custom_field'] = date( 'Y-m-d', strtotime( $data['post_custom_fields']['my_date_custom_field'] ) );
return $data;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment