WordPress - check if user exists by ID


/ Published in: ActionScript 3
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $aux = get_userdata( $userid );
  2.  
  3. if$aux==false){
  4. //does not exist
  5. }else{
  6. //exists
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.