You may be looking for a WordPress user ID for many reasons. Whether you need the user ID for custom code or debugging an issue in this tutorial we’ll show you how to find user IDs in WordPress.
First we’ll cover ways to get a user ID in the WordPress dashboard and we’ll cover PHP code snippets further down in the article.
Find User ID in WordPress Dashboard
This is by far the most simple way to get a WordPress user’s ID. First, you’ll need to login to your WordPress admin dashboard.
Then head to Users/All users
From here you can select the user you want the ID of by clicking edit.
This will lead you to the user edit page. Here you’ll easily be able to see the user’s ID in the address bar of your browser.
In the example below our user’s ID is “3”.
See All WordPress User IDs (Using Reveal IDs Plugin)
If you want to see all user’s IDs in your WordPress dashboard you can use the Reveal IDs plugin.
After activating this plugin just head to Users/All users and you’ll see a column with the user’s ID.
This plugin is a great way to display WordPress user IDs in the admin for quick reference.
Get Current User ID (using PHP)
The easiest way to get the current logged in user ID with PHP is to use the get_current_user_id() function. This is the ideal solution if you’re building custom code and need the current user’s ID.
<?php | |
echo 'The current logged in user ID is: '.get_current_user_id(); |
Get User ID by Email (using PHP)
If you’d like to get a WordPress user’s ID by an email address here is how you do that using the get_user_by() function.
<?php | |
//Get user ID by email | |
$user_data = get_user_by('email', 'your@email.com'); | |
$user_id = $user_data->ID; | |
$user_email = $user_data->user_email; | |
if(!empty($user_id)){ | |
echo 'The user ID for '.$user_email.' is '.$user_id; | |
} |
3 Responses
Hi, Andy, nice post, just a question.
How can I show the user ID in my wordpress site?
I managed to create a DIV over the top nav and show it there, but I want to show it anywhere.
I mean, maybe like a H1 title at the top right of my site.
Should I ever make a DIV and style with some CSS to get the ID show?
Thanks in advance
Not fully sure of the question but you could render it in your header and style it accordingly. Additionally you could add it to a themed hook to show it up in the relevant place. It really depends on where you want it and how your theme displays things. Making a child theme and editing the header.php might be the easiest thing to do.
Nice!