Skip to content

Instantly share code, notes, and snippets.

@tetsuo808
tetsuo808 / functions.php
Last active September 10, 2025 12:15
Ensure PMPro profile page URLs update when a Username is edited
<?php
/**
* Sync user_nicename with user_login so PMPro profile URLs
* always reflect updated usernames.
*/
function pmpromd_sync_nicename_on_profile_update($user_id) {
$user = get_userdata($user_id);
if ($user) {
$expected = sanitize_title($user->user_login);
if ($user->user_nicename !== $expected) {