WordPress有一个类,如果您使用body_class()
函数(您应该是!)指示管理栏是否显示:admin-bar
. 因此,不需要php或JS。我想你在用position: fixed;
对于.navbar-fixed-top
. 如果是这样,只需将以下内容添加到主题的样式表中即可:
.admin-bar .navbar-fixed-top {
top: 32px; /* if it already has a top value, add 32px to it */
}
还请注意,“mobile”(移动)菜单更高(46px)。如果网站上有人用手机或平板电脑进行编辑,您可能需要添加另一种风格:
@media screen and (max-width: 782px) {
.admin-bar .navbar-fixed-top {
top: 46px; /* if it already has a top value, add 46px to it */
}
}
或者,如果您想采用“移动优先样式”的方法,请翻转这些规则并使用“最小宽度”。