表題の通りです。
if ( is_admin_bar_showing() ) _wp_admin_bar_init();
このコードを wp-load.php のインクルードと get_header() の間に挿入します。
get_header() の後だとウィンドウ上部に管理バー分のスペースを空けるスタイルと、ユーザー > プロフィールの「サイトを見るときにツールバーを表示する」にチェックが入っている場合の非表示用スタイルの下記コードがなくなります。
<style type="text/css" media="print">#wpadminbar { display:none; }</style>
<style type="text/css" media="screen">
html { margin-top: 32px !important; }
* html body { margin-top: 32px !important; }
@media screen and ( max-width: 782px ) {
html { margin-top: 46px !important; }
* html body { margin-top: 46px !important; }
}
</style>