How to check if currently in WordPress Admin?

I am creating my first plugin and have a single function that controls the output. This function has different output based on whether or not it is being viewed from within the WordPress admin vs. the frontend. Is there any way to easily test whether or not my function is being triggered from within admin vs the frontend?

I’ve tried conditionally checking the query string against the name of my plugin “page” name but it seems to fail on some servers/installs.

Read More

Thanks

Related posts

Leave a Reply

5 comments

  1. If you want to know whether current user IS ADMIN, then you should use this:

       $is_admin = current_user_can( 'manage_options' );
    

    I got misguided by the above answer, so a little note to keep others from making the same mistake.

  2. Note that is_admin() only works in the backend. For any part of the plugin that shows on the public website you need to use current_user_can().

    if ( current_user_can( 'administrator' ) ) {
      // your code goes here
    }
    
  3. <?php 
    global $current_user;
    get_currentuserinfo();
    $user_id = $current_user->ID
    
    //usually admin user id is 1 if its not working check admin user id from wp_users table
    if($user_id == 1) {
       //write your stuff
    }
    ?>