首页    >    新闻资讯    >   移动admin bar 到底部

移动admin bar 到底部

WordPress管理栏是WordPress 3.1引入的新功能。一个置顶的小工具栏,可以用来快速访问管理界面,如添加新的日志和页面,编辑个人资料,编辑评论,检查统计,编辑widget等等。


通过下面一段代码可以把置顶的工具栏放在页面的最底部,当然也有插件可以实现,但是为了网站速度问题,我想大家还都是比较倾向于使用代码的。吧下面这一段代码复制到functions.php

// move admin bar to bottom
function fb_move_admin_bar() { ?>
    <style type="text/css">
        body {
            margin-top: -28px;
            padding-bottom: 28px;
        }
        body.admin-bar <A class=tweet-hashtag href="http://search.twitter.com/search?q=%23wphead">#wphead</A> {
            padding-top: 0;
        }
        body.admin-bar <A class=tweet-hashtag href="http://search.twitter.com/search?q=%23footer">#footer</A> {
            padding-bottom: 28px;
        }
        <A class=tweet-hashtag href="http://search.twitter.com/search?q=%23wpadminbar">#wpadminbar</A> {
            top: auto !important;
            bottom: 0;
        }
        <A class=tweet-hashtag href="http://search.twitter.com/search?q=%23wpadminbar">#wpadminbar</A> .quicklinks .menupop ul {
            bottom: 28px;
        }
    </style>
<?php }
// on backend area
add_action( 'admin_head', 'fb_move_admin_bar' );
// on frontend area
add_action( 'wp_head', 'fb_move_admin_bar' );

这样你的管理栏就可以放在底部了

分类:新闻资讯

标签:, ,

* 版权声明:作者WordPress啦! 转载请注明出处。