我创建了这个并将其添加到我的footer.php文件中,尝试创建一些隐藏'我正在开发的管理员栏,因为它正在妨碍我。其他人可以测试一下并告诉我它为什么不能正常工作吗?
<?php global $user_ID; if( $user_ID ) : ?>
<?php if( current_user_can('level_10') ) : ?>
<!-- ?????????????????????????????????????????????????????????????? -->
<div class="hidetheadminbar">ADMIN MENU</div>
<style type="text/css">
.hidetheadminbar {
width: 140px;
height: 48px;
line-height: 48px;
background: #BE0000;
border-radius: 5px 5px 0 0;
box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.7);
position: fixed;
z-index: 999;
left: -80px;
top: 45%;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-transition: all 500ms;
-moz-transition: all 500ms;
-ms-transition: all 500ms;
transition: all 500ms;
text-align: center;
color: #FFF;
}
.hidetheadminbar:hover {
left: -50px;
cursor: pointer;
-webkit-transition: all 500ms;
-moz-transition: all 500ms;
-ms-transition: all 500ms;
transition: all 500ms;
}
.gone {
display: none;
}
.zero {
position: relative;
top: -32px;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".hidetheadminbar").click(function() {
jQuery("#wpadminbar").toggleClass("gone");
jQuery("html").toggleClass("zero");
});
jQuery(".hidetheadminbar").trigger("click");
});
</script>
<!-- ????????????????????????????????????????????????????????????? -->
<?php endif; ?>
<?php endif; ?>
答案 0 :(得分:0)
只需在footer.php
中添加wp_footer();
时添加条件测试即可