add_filter('matador_job_taxonomies', function( $taxonomies ) {
$taxonomies['skills'] = [
'key' => _x( 'matador-skills', 'textdomain' ),
'single' => _x( 'skill', 'Job Category Singular Name.', 'textdomain' ),
'plural' => _x( 'skills', 'Job Category Plural Name.', 'textdomain' ),
];
return $taxonomies;
});
add_action( 'matador_job_import_save_job', function( $job, $wpid ) {
if ( ! empty( $job->skills ) ) {
wp_set_object_terms( $wpid, $job->skills, 'matador-skills' );
}
}, 10, 2 );
Add a Job Taxonomy Programmatically
Updated on October 1, 2025
Need Support?Contact Support