Change user nicename without sanitize
The title is being converted to lowercase by filter sanitize_title // in wp-includes/default-filters.php add_filter( ‘sanitize_title’, ‘sanitize_title_with_dashes’, 10, 3 ); // it means => calling sanitize_title_with_dashes() in wp-includes/formatting.php Here is explanation to what can do, recommended and not recommended method Not Recommended You may remove this filter but not recommmended Because this filter is for converting … Read more