Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

Thanks

share|improve this question

3 Answers

up vote 22 down vote accepted

Duh, this was too obvious. For some reason I was thinking this had to do with an admin user. if(is_admin()) { ...output my admin stuff....}

http://codex.wordpress.org/Function_Reference/is_admin

share|improve this answer
You can mark your own answer as accepted. :) – GmonC Nov 9 '10 at 3:16
I needed the same. I fell for the same. – Fronker Feb 27 '12 at 6:29
Warning warning Will Robinson: this code checks to see if you are in the admin area, NOT whether you are logged in as an admin!! – Brian C Mar 21 at 8:45
@BrianC - Right. I wasn't trying to determine if the user is logged in. My original question was about trying to determine if the current page was being rendered in the frontend or admin. So this is the correct function if you want to do something only while in the admin area. – Matt Mar 21 at 13:21

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.

share|improve this answer
Yes, I think this seems to be the proper one that even the Wordpress Support puts it down. – Salocin.TEN Apr 15 at 9:11
<?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
}
?>
share|improve this answer
I think current_user_can() is probably a more effective method, probably not wise to be checking WordPress global vars. – Brian C Mar 21 at 10:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.