Skip to content

Instantly share code, notes, and snippets.

View brian-stinar's full-sized avatar

Brian J. Stinar brian-stinar

View GitHub Profile
@philipnewcomer
philipnewcomer / generate-unique-username.php
Last active February 11, 2023 19:05
Generate a unique username in WordPress
<?php
/**
* Recursive function to generate a unique username.
*
* If the username already exists, will add a numerical suffix which will increase until a unique username is found.
*
* @param string $username
*
* @return string The unique username.
*/