Languages: English • Italiano • 日本語 (Add your language)
Returns the user ID if the user exists or false if the user doesn't exist.
<?php username_exists( $username ); ?>
Use username_exists() in your scripts to decide whether the given username exists.
<?php
$username = $_POST['username'];
if ( username_exists( $username ) )
echo "Username In Use!";
else
echo "Username Not In Use!";
?>
username_exists() is located in wp-includes/user.php.