Skip to content

Instantly share code, notes, and snippets.

@abelcallejo
Created March 22, 2020 04:07
Show Gist options
  • Save abelcallejo/6a7f3bc02bd4e11451b40a1800121dac to your computer and use it in GitHub Desktop.
Save abelcallejo/6a7f3bc02bd4e11451b40a1800121dac to your computer and use it in GitHub Desktop.
Wordpress cheatsheet

Wordpress cheatsheet

User management

Getting the current user

echo get_current_user_id(); //1

Getting the data of a user

$user_id = get_current_user_id();
$data = get_userdata( $user_id );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment