WordPress MU Forums » Plugins and Hacks
Andreiztm Member Posted 17 years ago #
how can i find out the id of the current logged user?
cafespain Member Posted 17 years ago #
http://codex.wordpress.org/Function_Reference/get_currentuserinfo
my-gude_org Member Posted 17 years ago #
function get_user() { global $current_user;
echo "UserID: " . $current_user->ID . ""; }
enjoy