所以在wp includes/admin栏中。php有一个函数可以向页面添加CSS样式:
function _admin_bar_bump_cb() { ?>
<style type="text/css" media="screen">
html { margin-top: 28px !important; }
* html body { margin-top: 28px !important; }
</style>
<?php
}
我想适当地对此进行注释(无论是函数还是函数的内容,任何一个都可以),但不要触及核心代码。我该怎么做?