Created
February 13, 2015 13:01
-
-
Save bryceadams/a37d1bf8fc76bc855c4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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