Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created June 4, 2014 06:13
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 bryceadams/e307a8fb3c9b17bb966a to your computer and use it in GitHub Desktop.
Save bryceadams/e307a8fb3c9b17bb966a to your computer and use it in GitHub Desktop.
<?php
function namespace_check_admin() {
if ( current_user_can('manage_options') ) {
echo "You're an admin!";
} else {
echo "Well you're just a muggle! I mean, non-admin!";
}
}
add_action( 'plugins_loaded', 'namespace_check_admin' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment