WordPress移除html { margin-top: 32px !important; }

首先就是最烦人的顶部多余的style样式内容:

主要输出内容为:

<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>

在当前主题的function.php文件中,加入如下代码内容:

add_filter( ‘show_admin_bar’, ‘__return_false’ );

或登陆wordpress后台,找到【用户】–【我的个人资料】,将浏览站点时显示工具栏前面的勾选去掉。

讨论区