Is there a way of obtaining the user ID of the profile being edited in wp-admin?

I know it’s in the URL if you are editing a user, EX: ./wp-admin/user-edit.php?user_id=427. Could always $_GET['user_id'] to retrieve the user’s ID, but what about when you’re editing your own profile in wp-admin? The user ID wouldn’t be in the URL. EX ./wp-admin/profile.php

Is there an easy or broad way of retrieving the user ID of the current user profile being edited in wp-admin?

2 s
2

There is a global variable called … $user_id available on that page. Always.

From user-edit.php:

$user_id = (int) $user_id;
$current_user = wp_get_current_user();
if ( ! defined( 'IS_PROFILE_PAGE' ) )
    define( 'IS_PROFILE_PAGE', ( $user_id == $current_user->ID ) );

if ( ! $user_id && IS_PROFILE_PAGE )
    $user_id = $current_user->ID;
elseif ( ! $user_id && ! IS_PROFILE_PAGE )
    wp_die(__( 'Invalid user ID.' ) );
elseif ( ! get_userdata( $user_id ) )
    wp_die( __('Invalid user ID.') );

Leave a Reply

Your email address will not be published. Required fields are marked *