Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save accessomnath/1817f526143921ca8c7b2efe056a7a87 to your computer and use it in GitHub Desktop.
Save accessomnath/1817f526143921ca8c7b2efe056a7a87 to your computer and use it in GitHub Desktop.
WP Job Manager - Make Job Location a required field
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