Hi,
If your site is multi language, you can use plugin WPML.
If you only use a language, you can add this function to the functions.php file of Child Theme
if(!function_exists('noo_change_custom_taxonomy_slug_args')):
function noo_change_custom_taxonomy_slug_args( $taxonomy, $object_type, $args ){
if( 'job_category' == $taxonomy ){ change.
remove_action( current_action(), __FUNCTION__ );
$args['rewrite'] = array( 'slug' => 'new-slug' ); // Instead of the "new-slug", add a new slug name.
register_taxonomy( $taxonomy, $object_type, $args );
}
}
add_action( 'registered_taxonomy', 'noo_change_custom_taxonomy_slug_args', 10, 3 );
endif;
Later you go to Settings -> Permalink -> Save Change.
Best regards,
tb.