您不应该更改核心文件这是一种错误的做法,每次将WordPress更新到最新版本时,您所做的更改都会被覆盖。
您可以使用管理头挂钩(http://codex.wordpress.org/Plugin_API/Action_Reference/admin_head) 在主题函数文件中,并替代样式。
所以看起来像这样。。。
// Hook into the admin head
add_action(\'admin_head\', \'override_css\');
// Add our custom CSS to the admin pages
function override_css() { ?>
<style>
/* This is a new property and doesnt require overwriting an existing property value */
.media-frame-title { color: red;}
/* Higher Specificity */
body .media-frame-menu {
width: 50px;
}
/*Important Rule */
.media-modal-content {
background: pink !important;
}
</style>
<?php } ?>
在“插入媒体”窗口中找到要更改的任何样式的选择器,并在开始和结束标记之间添加更新的样式。
您可能需要记住您的特殊性,所以如果某个属性已经存在,请像我之前使用body所做的那样,使其更加具体。media frame功能表或您可以使用!同样重要的规则。
另外请注意,您必须脱离PHP来呈现CSS,因此您必须确保再次关闭它,否则保存后会出现白色屏幕。
希望这有帮助:-)