管理バーをページ最下部に移動
「管理バーが上にあるとジャマだけれど、非表示にもしたくない」という方には表示位置を画面下部に変更する方法が向いているかもしれません。
その場合は下記のコードを(header.phpのhead内に)入力します。
<?php if( is_user_logged_in() ) : ?>
<style type="text/css">
html {
margin: 0 0 32px !important;
}
#wpadminbar {
position: fixed;
top: unset;
bottom: 0;
}
</style>
<?php endif; ?>