Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created February 13, 2015 13:01
Show Gist options
  • Save bryceadams/a37d1bf8fc76bc855c4d to your computer and use it in GitHub Desktop.
Save bryceadams/a37d1bf8fc76bc855c4d to your computer and use it in GitHub Desktop.
add_filter( 'job_application_form_fields', 'message_field_not_req' );
function message_field_not_req( $fields ) {
$fields['application_message']['required'] = false;
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment