Verschieben Sie die WordPress-Admin-Leiste nach unten CSS-Tricks

Anonim

Nur vor WordPress 3.3. Fügen Sie dieses CSS entweder zu Ihrer CSS-Datei hinzu, fügen Sie den gesamten Code zu Ihrer Datei functions.php hinzu oder erstellen Sie ein schnelles kleines Plugin.

function fb_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 ul ( bottom: 28px; ) '; ) // on backend area add_action( 'admin_head', 'fb_move_admin_bar' ); // on frontend area add_action( 'wp_head', 'fb_move_admin_bar' );