add_filter( 'wp_insert_term_data', 'hook_term_change_slug', 10, 3 );
function hook_term_change_slug( $data, $taxonomy, $args ){
if($taxonomy == 'superheroes'){
//this is for slug part
$data['slug'] = sanitize_title($data['slug'])."-marvel";
}
return $data;
}
Код вставьте в function.php