Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pbearne/7def65334ac102a0073754bc54c07436 to your computer and use it in GitHub Desktop.
Save pbearne/7def65334ac102a0073754bc54c07436 to your computer and use it in GitHub Desktop.
add_filter( 'matador_jobs_pro_jobs_xml_jobboost_segments_remap', static function ( $segments ) {
$segments[19] = $segments[19] + array(
'cccountancy',
'celastingadvies',
'consultancy finance',
'corporate finance',
'finance & control'
);
$segments[20] = $segments[20] + array( 'financieel / administratief' . 'officemanagement', 'salarisadministratie' );
$segments[21] = $segments[21] + array( 'banking' );
$segments[24] = $segments[24] + array( 'business analyse', 'business intelligence', );
$segments[25] = $segments[25] + array( 'ux ui / design' );
$segments[26] = $segments[26] + array( 'customer service' );
$segments[30] = $segments[30] + array( 'engineering' );
$segments[33] = $segments[33] + array(
'architectuur it',
'consultancy it',
'crm',
'cyber security',
'database specialisten',
'development',
'informatieanalyse',
'netwerkbeheer',
'scrum',
'support',
'systeembeheer',
'applicatiebeheer'
);
$segments[35] = $segments[35] + array( 'logistiek' );
$segments[37] = $segments[37] + array( 'sales & marketing' );
$segments[41] = $segments[41] + array( 'testing', 'compliance & risk' );
$segments[42] = $segments[42] + array( 'sales & marketing' );
$segments[43] = $segments[43] + array( 'cyber security' );
$segments[6] = $segments[6] + array( 'hoursperweek: 36,38,40' );
$segments[7] = $segments[7] + array( 'hoursperweek: 8,16,24,32' );
$segments[1] = $segments[1] + array( 'Geen' );
$segments[2] = $segments[2] + array( 'mbo' );
$segments[5] = $segments[5] + array( 'postdoctoraal' );
// $segments[] = $segments[] + array(); // Values in the array need to all lower case
return $segments;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment