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; | |
} |