Skip to content

Instantly share code, notes, and snippets.

@tonydjukic
Created January 23, 2017 21:17
Show Gist options
  • Save tonydjukic/dcd38a8cbcdda8d116d2a15a7401b4f9 to your computer and use it in GitHub Desktop.
Save tonydjukic/dcd38a8cbcdda8d116d2a15a7401b4f9 to your computer and use it in GitHub Desktop.
WordPress if ADMIN User
<?php global $user_ID; if( $user_ID ) : ?>
<?php if( current_user_can('level_10') ) : ?>
<!--do something-->
<?php else : ?>
<!--//do something else-->
<?php endif; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment