{"id":41656,"date":"2016-02-07T20:25:28","date_gmt":"2016-02-07T20:25:28","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/show-me-the-admin\/"},"modified":"2017-11-20T08:58:46","modified_gmt":"2017-11-20T08:58:46","slug":"show-me-the-admin","status":"publish","type":"plugin","link":"https:\/\/he.wordpress.org\/plugins\/show-me-the-admin\/","author":5949465,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.2.1","stable_tag":"1.2.1","tested":"4.9.29","requires":"3.0","requires_php":"","requires_plugins":"","header_name":"Show Me The Admin","header_author":"Rachel Cherry","header_description":"","assets_banners_color":"615456","last_updated":"2017-11-20 08:58:46","external_support_url":"","external_repository_url":"","donate_link":"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","header_plugin_uri":"https:\/\/wordpress.org\/plugins\/show-me-the-admin\/","header_author_uri":"https:\/\/bamadesigner.com","rating":5,"author_block_rating":0,"active_installs":10,"downloads":3047,"num_ratings":6,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","changelog","faq"],"tags":[],"upgrade_notice":{"1.2.1":"<ul>\n<li>This was released quickly after 1.2.0. Make sure you the read the changelog from 1.2.0.<\/li>\n<li>Fixed bug from 1.2.0 that confused features if no one was logged in.<\/li>\n<\/ul>","1.2.0":"<ul>\n<li>NOTICE: I removed the plugin&#039;s PHP constants. Are now stored in main class if you were using the data.<\/li>\n<li>Ensuring features are accessible, especially by keyboard.<\/li>\n<li>Gives focus to admin bar when revealed.<\/li>\n<li>Make sure the login button is hidden when not in use.<\/li>\n<\/ul>","1.1.2":"<ul>\n<li>Fixing esc_attr() bug where show and hide phrases weren&#039;t being printed on the settings page. Thanks @kevinwhoffman!<\/li>\n<\/ul>","1.1.1":"<ul>\n<li>Simply optimizing syntax and updating for 4.7.5.<\/li>\n<\/ul>","1.1.0":"<ul>\n<li>Added setting to define how long to display toolbar after hover and button click<\/li>\n<\/ul>","1.0.3":"<ul>\n<li>Made sure user notices end once users view settings<\/li>\n<\/ul>","1.0.2":"<ul>\n<li>CHECK YOUR SETTINGS - I modified the settings so users can enable\/disable not logged in functionality for each feature<\/li>\n<li>Optimized\/cleaned up the settings<\/li>\n<\/ul>","1.0.1":"<ul>\n<li>Removed margin top change when toolbar slides down to decrease conflicts with themes<\/li>\n<li>Now removes the  admin-bar CSS to help get rid of a theme&#039;s conflicting styles<\/li>\n<\/ul>"},"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"6"},"assets_icons":{"icon-256x256.png":{"filename":"icon-256x256.png","revision":"1347165","resolution":"256x256","location":"assets"}},"assets_banners":{"banner-772x250.png":{"filename":"banner-772x250.png","revision":"1347165","resolution":"772x250","location":"assets"}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.0","1.0.1","1.0.2","1.0.3","1.1.0","1.1.1","1.1.2","1.2.0","1.2.1"],"block_files":[],"assets_screenshots":[],"screenshots":[],"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[83,1339,2761,2569,1541],"plugin_category":[38],"plugin_contributors":[80611],"plugin_business_model":[],"class_list":["post-41656","plugin","type-plugin","status-publish","hentry","plugin_tags-admin","plugin_tags-admin-bar","plugin_tags-adminbar","plugin_tags-bar","plugin_tags-toolbar","plugin_category-authentication","plugin_contributors-bamadesigner","plugin_committers-bamadesigner"],"banners":{"banner":"https:\/\/ps.w.org\/show-me-the-admin\/assets\/banner-772x250.png?rev=1347165","banner_2x":false,"banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/show-me-the-admin\/assets\/icon-256x256.png?rev=1347165","icon_2x":"https:\/\/ps.w.org\/show-me-the-admin\/assets\/icon-256x256.png?rev=1347165","generated":false},"screenshots":[],"raw_content":"<!--section=description-->\n<p>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.<\/p>\n\n<p>\"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.<\/p>\n\n<h4>Features include:<\/h4>\n\n<ul>\n<li>Hide your toolbar and make it appear by typing a phrase<\/li>\n<li>Hide your toolbar and show WordPress button in top left corner to click to appear<\/li>\n<li>Hide your toolbar and make it appear when mouse hovers near top of window<\/li>\n<\/ul>\n\n<p><strong>Show Me The Admin is also multisite-friendly.<\/strong> Please use the <a href=\"https:\/\/github.com\/bamadesigner\/show-me-the-admin\">Show Me The Admin GitHub repo<\/a> to contribute, submit issues, and suggest features.<\/p>\n\n<p>Your \"Show Toolbar when viewing site\" profile setting must be enabled.<\/p>\n\n<h3>Filters<\/h3>\n\n<p>Show Me The Admin has filters setup to allow you to tweak the plugin.<\/p>\n\n<h4>Filter the settings<\/h4>\n\n<pre><code>\/**\n * Filters the \"Show Me The Admin\" settings.\n *\n * @param   array - $settings - the original settings\n * @return  array - the filtered settings\n *\/\nadd_filter( 'show_me_the_admin_settings', 'filter_show_me_the_admin_settings' );\nfunction filter_show_me_the_admin_settings( $settings ) {\n\n    \/\/ Change the settings\n\n    \/\/ For example, change the phrase you type to show the toolbar, default is 'showme'\n    $settings[ 'show_phrase' ] = 'hello';\n\n    \/\/ Or change the phrase you type to hide the toolbar, default is 'hideme'\n    $settings[ 'hide_phrase' ] = 'goodbye';\n\n    \/\/ Return the settings\n    return $settings;\n}\n<\/code><\/pre>\n\n<h4>Filter the phrase to show the toolbar<\/h4>\n\n<pre><code>\/**\n * Filters the phrase to show the toolbar.\n *\n * @param   string - $show_phrase - the original phrase\n * @return  string - the filtered phrase\n *\/\nadd_filter( 'show_me_the_admin_show_phrase', 'filter_show_me_the_admin_show_phrase' );\nfunction filter_show_me_the_admin_show_phrase( $show_phrase ) {\n\n    \/\/ Change the phrase, default is 'showme'\n    $show_phrase = 'hello';\n\n    \/\/ Return the phrase\n    return $show_phrase;\n}\n<\/code><\/pre>\n\n<h4>Filter the phrase to hide the toolbar<\/h4>\n\n<pre><code>\/**\n * Filters the phrase to hide the toolbar.\n *\n * @param   string - $hide_phrase - the original phrase\n * @return  string - the filtered phrase\n *\/\nadd_filter( 'show_me_the_admin_hide_phrase', 'filter_show_me_the_admin_hide_phrase' );\nfunction filter_show_me_the_admin_hide_phrase( $hide_phrase ) {\n\n    \/\/ Change the phrase, default is 'hideme'\n    $hide_phrase = 'goodbye';\n\n    \/\/ Return the phrase\n    return $hide_phrase;\n}\n<\/code><\/pre>\n\n<h4>Filter the text for the dropdown login button<\/h4>\n\n<pre><code>\/**\n * Filters the text for the \"Show Me The Admin\"\n * dropdown login button.\n *\n * @param   string - $text - the original text\n * @return  string - the filtered text\n *\/\nadd_filter( 'show_me_the_admin_login_text', 'filter_show_me_the_admin_login_text' );\nfunction filter_show_me_the_admin_login_text( $text ) {\n\n \/\/ Change the text, default is 'Login to WordPress'\n $text = 'Login to the admin';\n\n \/\/ Return the text\n return $text;\n}\n<\/code><\/pre>\n\n<!--section=installation-->\n<ol>\n<li>Upload 'show-me-the-admin' to the '\/wp-content\/plugins\/' directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>Go to Settings &gt; Show Me The Admin<\/li>\n<\/ol>\n\n<!--section=changelog-->\n<h4>1.2.1<\/h4>\n\n<ul>\n<li>This was released quickly after 1.2.0. Make sure you the read the changelog from 1.2.0.<\/li>\n<li>Fixed bug from 1.2.0 that confused features if no one was logged in.<\/li>\n<\/ul>\n\n<h4>1.2.0<\/h4>\n\n<ul>\n<li>NOTICE: I removed the plugin's PHP constants. Are now stored in main class if you were using the data.<\/li>\n<li>Ensuring features are accessible, especially by keyboard.<\/li>\n<li>Gives focus to admin bar when revealed.<\/li>\n<li>Make sure the login button is hidden when not in use.<\/li>\n<\/ul>\n\n<h4>1.1.2<\/h4>\n\n<ul>\n<li>Fixing esc_attr() bug where show and hide phrases weren't being printed on the settings page. Thanks @kevinwhoffman!<\/li>\n<\/ul>\n\n<h4>1.1.1<\/h4>\n\n<ul>\n<li>Simply optimizing syntax and updating for 4.7.5.<\/li>\n<\/ul>\n\n<h4>1.1.0<\/h4>\n\n<ul>\n<li>Added setting to define how long to display toolbar after hover and button click<\/li>\n<\/ul>\n\n<h4>1.0.3<\/h4>\n\n<ul>\n<li>Made sure user notices end once users view settings<\/li>\n<\/ul>\n\n<h4>1.0.2<\/h4>\n\n<ul>\n<li>CHECK YOUR SETTINGS - I modified the settings so users can enable\/disable not logged in functionality for each feature<\/li>\n<li>Optimized\/cleaned up the settings<\/li>\n<\/ul>\n\n<h4>1.0.1<\/h4>\n\n<ul>\n<li>Removed margin top change when toolbar slides down to decrease conflicts with themes<\/li>\n<li>Now removes the  admin-bar CSS to help get rid of a theme's conflicting styles<\/li>\n<\/ul>\n\n<h4>1.0.0<\/h4>\n\n<p>Plugin launch<\/p>\n\n<!--section=faq-->\n<dl>\n<dt>Installation Instructions<\/dt>\n<dd><ol>\n<li>Upload 'show-me-the-admin' to the '\/wp-content\/plugins\/' directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>Go to Settings &gt; Show Me The Admin<\/li>\n<\/ol><\/dd>\n\n<\/dl>","raw_excerpt":"Hides your admin toolbar and enables you to make it appear, and disappear, using a variety of methods.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/41656","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=41656"}],"author":[{"embeddable":true,"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/bamadesigner"}],"wp:attachment":[{"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=41656"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=41656"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=41656"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=41656"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=41656"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/he.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=41656"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}