Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save someguy9/681cf9c747dfed83c48928f58f5c4239 to your computer and use it in GitHub Desktop.
Save someguy9/681cf9c747dfed83c48928f58f5c4239 to your computer and use it in GitHub Desktop.
Get a user's details by their username in WordPress
<?php
$user_data = get_user_by('login', 'someguy');
echo 'The user ID is '.$user_data->ID;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment