Skip to content

Instantly share code, notes, and snippets.

@facelordgists
Created April 29, 2013 06:27
Show Gist options
  • Save facelordgists/5479994 to your computer and use it in GitHub Desktop.
Save facelordgists/5479994 to your computer and use it in GitHub Desktop.
WORDPRESS: return true if viewing as admin
/* Return true if user viewing site with admin user level
function viewing_as_admin(){
get_currentuserinfo();
global $user_level;
if ($user_level < 10) {
return false;
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment