WordPress - Get role of a user

<?php function hmk_get_user_role($user_ID) { $user = new WP_User($user_ID); $role = array_shift($user -> roles); return $role; } ?>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.