Title: Show Me The Admin
Author: Rachel Cherry
Published: <strong>February 7, 2016</strong>
Last modified: November 20, 2017

---

Search plugins

![](https://ps.w.org/show-me-the-admin/assets/banner-772x250.png?rev=1347165)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://ps.w.org/show-me-the-admin/assets/icon-256x256.png?rev=1347165)

# Show Me The Admin

 By [Rachel Cherry](https://profiles.wordpress.org/bamadesigner/)

[Download](https://downloads.wordpress.org/plugin/show-me-the-admin.1.2.1.zip)

 * [Details](https://wordpress.org/plugins/show-me-the-admin/#description)
 * [Reviews](https://wordpress.org/plugins/show-me-the-admin/#reviews)
 *  [Installation](https://wordpress.org/plugins/show-me-the-admin/#installation)
 * [Development](https://wordpress.org/plugins/show-me-the-admin/#developers)

 [Support](https://wordpress.org/support/plugin/show-me-the-admin/)

## Description

The WordPress toolbar makes it really easy to move between viewing your site and
editing your site but sometimes the toolbar itself can be intrusive.

“Show Me The Admin” is a WordPress plugin that hides your toolbar and enables you
to make it appear, and disappear, using a variety of methods.

#### Features include:

 * Hide your toolbar and make it appear by typing a phrase
 * Hide your toolbar and show WordPress button in top left corner to click to appear
 * Hide your toolbar and make it appear when mouse hovers near top of window

**Show Me The Admin is also multisite-friendly.** Please use the [Show Me The Admin GitHub repo](https://github.com/bamadesigner/show-me-the-admin)
to contribute, submit issues, and suggest features.

Your “Show Toolbar when viewing site” profile setting must be enabled.

### Filters

Show Me The Admin has filters setup to allow you to tweak the plugin.

#### Filter the settings

    ```
    /**
     * Filters the "Show Me The Admin" settings.
     *
     * @param   array - $settings - the original settings
     * @return  array - the filtered settings
     */
    add_filter( 'show_me_the_admin_settings', 'filter_show_me_the_admin_settings' );
    function filter_show_me_the_admin_settings( $settings ) {

        // Change the settings

        // For example, change the phrase you type to show the toolbar, default is 'showme'
        $settings[ 'show_phrase' ] = 'hello';

        // Or change the phrase you type to hide the toolbar, default is 'hideme'
        $settings[ 'hide_phrase' ] = 'goodbye';

        // Return the settings
        return $settings;
    }
    ```

#### Filter the phrase to show the toolbar

    ```
    /**
     * Filters the phrase to show the toolbar.
     *
     * @param   string - $show_phrase - the original phrase
     * @return  string - the filtered phrase
     */
    add_filter( 'show_me_the_admin_show_phrase', 'filter_show_me_the_admin_show_phrase' );
    function filter_show_me_the_admin_show_phrase( $show_phrase ) {

        // Change the phrase, default is 'showme'
        $show_phrase = 'hello';

        // Return the phrase
        return $show_phrase;
    }
    ```

#### Filter the phrase to hide the toolbar

    ```
    /**
     * Filters the phrase to hide the toolbar.
     *
     * @param   string - $hide_phrase - the original phrase
     * @return  string - the filtered phrase
     */
    add_filter( 'show_me_the_admin_hide_phrase', 'filter_show_me_the_admin_hide_phrase' );
    function filter_show_me_the_admin_hide_phrase( $hide_phrase ) {

        // Change the phrase, default is 'hideme'
        $hide_phrase = 'goodbye';

        // Return the phrase
        return $hide_phrase;
    }
    ```

#### Filter the text for the dropdown login button

    ```
    /**
     * Filters the text for the "Show Me The Admin"
     * dropdown login button.
     *
     * @param   string - $text - the original text
     * @return  string - the filtered text
     */
    add_filter( 'show_me_the_admin_login_text', 'filter_show_me_the_admin_login_text' );
    function filter_show_me_the_admin_login_text( $text ) {

     // Change the text, default is 'Login to WordPress'
     $text = 'Login to the admin';

     // Return the text
     return $text;
    }
    ```

## Installation

 1. Upload ‘show-me-the-admin’ to the ‘/wp-content/plugins/’ directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Go to Settings > Show Me The Admin

## FAQ

  Installation Instructions

 1. Upload ‘show-me-the-admin’ to the ‘/wp-content/plugins/’ directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Go to Settings > Show Me The Admin

## Reviews

![](https://secure.gravatar.com/avatar/1f422f02b5140cde5d7451e9c803dc9dcce6bf98aa53a0c7dfb203408a8b3ef2?
s=60&d=retro&r=g)

### 󠀁[There when you need it, gone when you don’t](https://wordpress.org/support/topic/there-when-you-need-it-gone-when-you-dont/)󠁿

 [Kevin Hoffman](https://profiles.wordpress.org/kevinwhoffman/) May 23, 2017 1 reply

Throughout development, I used to keep a second browser open where I remained logged
out. Doing so allowed me to view a clean page without the admin bar. This plugin
gives me the best of both worlds, an admin bar that is available when I need it,
but gone when I don’t. The plugin settings offer just enough flexibility so there
is sure to be a toggle method that works for you.

![](https://secure.gravatar.com/avatar/09e4654520506b42c068a6812d64a035ae013516b15ec9789427f3a60084d7c5?
s=60&d=retro&r=g)

### 󠀁[Very useful!](https://wordpress.org/support/topic/very-useful-1271/)󠁿

 [jhepong](https://profiles.wordpress.org/jhepong/) May 16, 2017

I always use this plugin for all the wordpress sites I build as this is very easy
to setup and FREE! I always set my Admin Bar to display when I hover my mouse cursor
or click to the top-most area of the webpage.

![](https://secure.gravatar.com/avatar/1c2e9c521fa79dea0fffc9a98c70df6a0f95cbc391400d3fff470663fb2ab1cf?
s=60&d=retro&r=g)

### 󠀁[Awesome plugin](https://wordpress.org/support/topic/awesome-plugin-2071/)󠁿

 [phillcoxon](https://profiles.wordpress.org/phillcoxon/) September 3, 2016 1 reply

Such a simple, well executed idea that solves a real point of frustration. Thank
you!

![](https://secure.gravatar.com/avatar/111643ac98f39db50c6d169a38c5bb981af9ba8399ff23453d7fef2c4b288571?
s=60&d=retro&r=g)

### 󠀁[Featured on iThemes Training Plugin Roundup, March 2016](https://wordpress.org/support/topic/featured-on-ithemes-training-plugin-roundup-march-2016-2017/)󠁿

 [nathaningram](https://profiles.wordpress.org/nathaningram/) September 3, 2016 
1 reply

A well-conceived and well-executed tweak of the admin bar that many users will love.
Nice work!

![](https://secure.gravatar.com/avatar/aa70c01e4425cebdefa45d64e14f8b89de1604d8d53c97f4b12bcbda7a553bdc?
s=60&d=retro&r=g)

### 󠀁[works justl ike it should](https://wordpress.org/support/topic/works-justl-ike-it-should/)󠁿

 [Chris Flannagan](https://profiles.wordpress.org/mrflannagan/) September 3, 2016
1 reply

and loads of options, thanks for the killer plugin!!

![](https://secure.gravatar.com/avatar/c8091d1ddd1fb207bb9c5015c2869bae9a2f03bd1378d11cd5ec0edc076bb2cd?
s=60&d=retro&r=g)

### 󠀁[Well thought out and executed](https://wordpress.org/support/topic/well-thought-out-and-executed/)󠁿

 [Matt Cromwell](https://profiles.wordpress.org/webdevmattcrom/) September 3, 2016
1 reply

I really like how well thought out this is. Adding the “notify users of this option”
setting is a really thoughtful touch. I also really like the customized keystrokes.
Useful, and flexible and just gets the job done right. Thanks!

 [ Read all 6 reviews ](https://wordpress.org/support/plugin/show-me-the-admin/reviews/)

## Contributors & Developers

“Show Me The Admin” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Rachel Cherry ](https://profiles.wordpress.org/bamadesigner/)

[Translate “Show Me The Admin” into your language.](https://translate.wordpress.org/projects/wp-plugins/show-me-the-admin)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/show-me-the-admin/),
check out the [SVN repository](https://plugins.svn.wordpress.org/show-me-the-admin/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/show-me-the-admin/)
by [RSS](https://plugins.trac.wordpress.org/log/show-me-the-admin/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.2.1

 * This was released quickly after 1.2.0. Make sure you the read the changelog from
   1.2.0.
 * Fixed bug from 1.2.0 that confused features if no one was logged in.

#### 1.2.0

 * NOTICE: I removed the plugin’s PHP constants. Are now stored in main class if
   you were using the data.
 * Ensuring features are accessible, especially by keyboard.
 * Gives focus to admin bar when revealed.
 * Make sure the login button is hidden when not in use.

#### 1.1.2

 * Fixing esc_attr() bug where show and hide phrases weren’t being printed on the
   settings page. Thanks @kevinwhoffman!

#### 1.1.1

 * Simply optimizing syntax and updating for 4.7.5.

#### 1.1.0

 * Added setting to define how long to display toolbar after hover and button click

#### 1.0.3

 * Made sure user notices end once users view settings

#### 1.0.2

 * CHECK YOUR SETTINGS – I modified the settings so users can enable/disable not
   logged in functionality for each feature
 * Optimized/cleaned up the settings

#### 1.0.1

 * Removed margin top change when toolbar slides down to decrease conflicts with
   themes
 * Now removes the admin-bar CSS to help get rid of a theme’s conflicting styles

#### 1.0.0

Plugin launch

## Meta

 *  Version **1.2.1**
 *  Last updated **9 years ago**
 *  Active installations **10+**
 *  WordPress version ** 3.0 or higher **
 *  Tested up to **4.9.29**
 * Tags
 * [admin](https://wordpress.org/plugins/tags/admin/)[admin bar](https://wordpress.org/plugins/tags/admin-bar/)
   [adminbar](https://wordpress.org/plugins/tags/adminbar/)[bar](https://wordpress.org/plugins/tags/bar/)
   [toolbar](https://wordpress.org/plugins/tags/toolbar/)
 *  [Advanced View](https://wordpress.org/plugins/show-me-the-admin/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  6 5-star reviews     ](https://wordpress.org/support/plugin/show-me-the-admin/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/show-me-the-admin/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/show-me-the-admin/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/show-me-the-admin/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/show-me-the-admin/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/show-me-the-admin/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/show-me-the-admin/reviews/)

## Contributors

 *   [ Rachel Cherry ](https://profiles.wordpress.org/bamadesigner/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/show-me-the-admin/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ZCAN2UX7QHZPL&lc=US&item_name=Rachel%20Carden%20%28Show%20Me%20The%20Admin%29&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)