Rita
Rita

Reputation: 315

How to remove wordpress top menu bar?

How to remove this wordpress top bar ?

enter image description here

I am doing it by css, is it right ?

#wpadminbar {
   display: none !important;
}

Upvotes: 0

Views: 1569

Answers (1)

Paul
Paul

Reputation: 1422

You can do this with PHP, add this to your functions.php file

show_admin_bar(false);

Although ideally this should be done in a child theme as will be undone when the theme is updated.

I don't think there is anything wrong with doing it the way you are already doing it with CSS though.

Upvotes: 5

Related Questions