Title: Remove wordpress banner
Last modified: July 25, 2023

---

# Remove wordpress banner

 *  Resolved [margauxmci](https://wordpress.org/support/users/margauxmci/)
 * (@margauxmci)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/remove-wordpress-banner/)
 * Hello,
 * I have a problem on my site. I use the “Members” extension in order to have users“
   guest” on this site. They have access to pages where non-registrants do not have
   access.
 * But when a person is logged in as a “guest”, we see the black bar of WordPress
   at the top. I have modified and defined the roles but I can not remove this tape.
 * Can you help me? Thank you!
    -  This topic was modified 2 years, 10 months ago by [margauxmci](https://wordpress.org/support/users/margauxmci/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [Caseproof LLC](https://wordpress.org/support/users/caseproof/)
 * (@caseproof)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/remove-wordpress-banner/#post-16926381)
 * Hi [@margauxmci](https://wordpress.org/support/users/margauxmci/)
 * To remove admin bar on front-end, you can try to add the code below at the end
   of your theme’s functions.php file:
 *     ```wp-block-code
       add_filter( 'show_admin_bar', function( $show ) {
       	$user = wp_get_current_user();
       	if ( ! is_user_logged_in() || ( ! empty($user) && in_array( 'administrator', (array) $user->roles ) ) ) {
       		$show = false;
       	}
   
       	return $show;
       }, 999 );
       ```
   
 * I hope that helps.

Viewing 1 replies (of 1 total)

The topic ‘Remove wordpress banner’ is closed to new replies.

 * ![](https://ps.w.org/members/assets/icon-256x256.png?rev=3508404)
 * [Members - Membership & User Role Editor Plugin](https://wordpress.org/plugins/members/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/members/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/members/)
 * [Active Topics](https://wordpress.org/support/plugin/members/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/members/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/members/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Caseproof LLC](https://wordpress.org/support/users/caseproof/)
 * Last activity: [2 years, 10 months ago](https://wordpress.org/support/topic/remove-wordpress-banner/#post-16926381)
 * Status: resolved