Skip to content

Instantly share code, notes, and snippets.

@someguy9
Created June 25, 2019 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save someguy9/6f8dec3b40bbc196f6adce47c61e7a19 to your computer and use it in GitHub Desktop.
Save someguy9/6f8dec3b40bbc196f6adce47c61e7a19 to your computer and use it in GitHub Desktop.
Check if a user is an admin in WordPress.
<?php
if( current_user_can('administrator') ) {
echo 'This will display for WordPress admins only.';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment