X

Como mover a barra de administração do WordPress para a parte inferior

Snippets by IsItWP

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).

Comentários   Deixe uma resposta

  1. 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’ );

  2. Alright but this isn’t enough. The dropdown menu like “New -> Post” aren’t clickable because they still drop Down instead of UP.

  3. 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.

    1.  Hi Cliff, ill take a look at it and update the snippet.

  4. 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.

    1. 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.

      1. I did a quick fix like that. Didn’t know if you had anything special up your sleeve. Thanks.

      2. I did a quick fix like that. Didn’t know if you had anything special up your sleeve. Thanks.

        1. Cool glad to hear you got things working.

Adicionar um comentário

Ficamos felizes por você ter optado por deixar um comentário. Lembre-se de que todos os comentários são moderados de acordo com nossa política de privacidade, e todos os links são nofollow. NÃO use palavras-chave no campo do nome. Vamos ter uma conversa pessoal e significativa.

WordPress Launch Checklist

A lista de verificação definitiva para o lançamento do WordPress

Compilamos todos os itens essenciais da lista de verificação para o lançamento de seu próximo site WordPress em um ebook prático.
Sim, envie-me o livro eletrônico gratuito grátis!