You can add extra job type by filter hook as following example bellow.
function job_bm_job_type_29072019($job_type){ $job_type_new = array('job_type_1'=>'Job Type 1','job_type_2'=>'Job Type 2'); $job_type = array_merge($job_type,$job_type_new); return $job_type; } add_filter('job_bm_job_type','job_bm_job_type_29072019');
Remove exiting job type
You can remove the exiting job type as following
function job_bm_filters_job_type_extra($job_type){ // remove full time job type unset($job_type['full-time']); return $job_type; } add_filter('job_bm_job_type','job_bm_filters_job_type_extra');
Default job types:
- freelance
- full-time
- internship
- part-time
- temporary