-
-
Save accessomnath/1817f526143921ca8c7b2efe056a7a87 to your computer and use it in GitHub Desktop.
WP Job Manager - Make Job Location a required field
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( 'submit_job_form_fields', 'make_location_field_required' ); | |
function make_location_field_required( $fields ) { | |
$fields['job']['job_location']['required'] = true; | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment