Title: question: how can i hide plugins?
Last modified: August 20, 2016

---

# question: how can i hide plugins?

 *  [x3mgroup](https://wordpress.org/support/users/x3mgroup/)
 * (@x3mgroup)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/question-how-can-i-hide-plugins/)
 * Hi, again another question
 * How can i hide plugins from users, except for the administrator (with userdid
   1)in WP 3.5 (NON-mu)?
 * Is there some PHP then can do this?

Viewing 1 replies (of 1 total)

 *  [Riversatile](https://wordpress.org/support/users/riversatile/)
 * (@riversatile)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/question-how-can-i-hide-plugins/#post-3349391)
 * Hi,
 * You can use [Admin Menu Editor](http://wordpress.org/extend/plugins/admin-menu-editor/)
 * or do it manuelly using your **function.php** file :
    In your **function.php**
   file (in yout theme folder), you can use the if is_admin statement to do not 
   display plugins page for other users.
 * The WordPress function **is_plugin_page()** return TRUE if the page _[http://www.your-website.com/wp-admin/plugins.php](http://www.your-website.com/wp-admin/plugins.php)_
   is called, so :
 * Do a IF statement for **is_plugin_page()**
    then DO a IF statement for **is_admin**
   if ( ! is_admin() ) { echo “You are not ADMIN, you’re redirected to [http://www.your-website.com/wp-admin/&#8221](http://www.your-website.com/wp-admin/&#8221);;}
   else { echo “You are ADMIN, stay on plugins page”; } end if; else { return; }
   end if;
 * If this could help you…

Viewing 1 replies (of 1 total)

The topic ‘question: how can i hide plugins?’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [Riversatile](https://wordpress.org/support/users/riversatile/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/question-how-can-i-hide-plugins/#post-3349391)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
