管理栏的样式通常打印在网站的头部,因此,当管理栏的打印样式显示在包含的样式表之后时,可能正在撤消CSS代码。
也许通过使用wp_head
操作您可以停止此操作,在函数文件中放置类似的内容可能会达到以下效果:
function modify_admin_bar_css() { ?>
<style type="text/css">
#wpadminbar {
z-index: 99999;
}
/* Plus any other styles you may need to add for the menu */
</style>
<?php }
add_action( \'wp_head\', \'modify_admin_bar_css\' );
或者,您可以尝试使用
!important
CSS中的声明,如下所示:
#wpadminbar {
z-index: 99999 !important;
}
/* Plus any other styles you may need to add for the menu */
但请注意,使用
!important
在CSS中,一般不建议这样做,所以您应该始终谨慎使用。