Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created February 17, 2020 15:49
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 plugin-republic/9738e597d2276e61a8fa016d71b85868 to your computer and use it in GitHub Desktop.
Save plugin-republic/9738e597d2276e61a8fa016d71b85868 to your computer and use it in GitHub Desktop.
<?php
/**
* Set the minimum acceptable date to 10 days in the future
*/
function prefix_date_field_params( $params, $item ) {
$params[] = '"minDate" : 10';;
return $params;
}
add_filter( 'pewc_filter_date_field_params', 'prefix_date_field_params', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment