Move WordPress admin bar to the bottom
I’m building a WordPress theme that has a fixed top menu bar. Hence, the admin bar supersedes it ; and that’s not nice. So I just wanted to move it to the bottom of the page, where nothing lies.
You will just need to add the following code to your functions.php file:
function fb_move_admin_bar() {
echo '
';
}
add_action( 'wp_head', 'fb_move_admin_bar' );
And that’s all! No the administration bar stays at the bottom of the page.
Written by Joel Carnat
Last modified on Tue, 23 Aug 2011 00:14:18 +0000
Posted in Technology
Tagged with admin, bar, bottom, css, fb_move_admin_bar, wordpress, wpadminbar
[...] Move WordPress admin bar to the bottom – TuM'Fatig I'm building a WordPress theme that has a fixed top menu bar. Hence, the admin bar supersedes it ; and that's not nice. So I just wanted to move it to the. Source: http://www.tumfatig.net [...]