Frustrado com a barra de administração exibida na parte superior? Deseja mover sua barra de administração do WordPress para a parte inferior? Então, basta copiar este snippet em seu arquivo functions.php.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
function move_admin_bar() { echo ' <style type="text/css"> body {margin-top: -28px;padding-bottom: 28px;} body.admin-bar #wphead {padding-top: 0;} body.admin-bar #footer {padding-bottom: 28px;} #wpadminbar { top: auto !important;bottom: 0;} #wpadminbar .quicklinks .menupop ul { bottom: 28px;} </style>'; } add_action( 'wp_head', 'move_admin_bar' );
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: Melhores construtores de páginas do WordPress (comparados).
For newer versions of WordPress:
function move_admin_bar() {
echo ‘
body {margin-top: -28px;padding-bottom: 28px;}
body.admin-bar #wphead {padding-top: 0;}
body.admin-bar #footer {padding-bottom: 28px;}
#wpadminbar { top: auto !important;bottom: 0;}
#wpadminbar .quicklinks .menupop .ab-sub-wrapper { bottom: 28px;}
#wpadminbar .quicklinks .menupop ul { bottom: 0;}
‘;
}
add_action( ‘wp_head’, ‘move_admin_bar’ );
Alright but this isn’t enough. The dropdown menu like “New -> Post” aren’t clickable because they still drop Down instead of UP.
I liked the admin bar at the bottom, but it’s no longer working properly. Maybe from WP version upgrades or something. But now the bar is at the bottom but the flyout menus go down instead of up – so now I can’t see anything except the first option. I just took it off for now, but I wanted to let you know. Thanks.
Hi Cliff, ill take a look at it and update the snippet.
I really like my Admin Bar at the bottom.
Currently, I only have it for Admin – I don’t have it on the public site.
However, the body margin:-28px affects my entire website, even when there’s no Admin bar present – even when not logged in as Admin.
There should be some conditional like “if Admin Bar is present, CODE”
Thanks.
Hi Cliff, if you look at the header of the site even when the admin bar is not visible you will see css. See this snippet
http://wpsnipp.com/index.php/functions-php/disable-the-new-admin-bar/
If you do this on a user level or ” if ( !current_user_can(‘author’)){ ” type of thing this should fix things for you.
I did a quick fix like that. Didn’t know if you had anything special up your sleeve. Thanks.
I did a quick fix like that. Didn’t know if you had anything special up your sleeve. Thanks.
Cool glad to hear you got things working.