Skip to content

Instantly share code, notes, and snippets.

View accessomnath's full-sized avatar
🎯
Focusing

Somnath Mondal accessomnath

🎯
Focusing
View GitHub Profile
@accessomnath
accessomnath / gist:1817f526143921ca8c7b2efe056a7a87
Created October 17, 2018 18:01 — forked from mikejolley/gist:bcb1d47f50aea6f2c0d9
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;
}