Check if specific username is logged in olatechproMarch 31, 20231 Views How can you check if specific username is logged in? Post Views: 1 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
wp_get_current_user then compare the object that’s returned user_login proprety with the specific username you’d like to check against. <?php add_action('admin_init', 'wpse74389_check_username'); function wpse74389_check_username() { $user = wp_get_current_user(); if($user && isset($user->user_login) && 'username_to_check' == $user->user_login) { // do stuff } } Log in to Reply
wp_get_current_user
then compare the object that’s returneduser_login
proprety with the specific username you’d like to check against.