如果我是对的style.css
(您的主题style.css
) 未在管理区域中加载,因此创建函数可以解决此问题。
旁注:我在你哪里找到的代码wp-admin/css/edit.css
第960行
下面是您找到的函数,希望这是您在哪里寻找的
functions.php
(你知道该怎么做)
将以下函数添加到functions.php
function change_cat_meta_postbox_css(){
?>
<style type="text/css">
.wp-tab-panel, .categorydiv div.tabs-panel,
.customlinkdiv div.tabs-panel,
.posttypediv div.tabs-panel,
.taxonomydiv div.tabs-panel {
min-height: 42px;
max-height: 500px;/* change this to own wishes */
overflow: auto;
padding: 0 0.9em;
border: solid 1px #dfdfdf;
background-color: #fdfdfd;
}
</style><?php
}
add_action(\'admin_head\', \'change_cat_meta_postbox_css\');
看一看
here 了解更多信息。
作为提醒,要更改管理区域(后端)的布局,您需要创建function
和正确的hook
实现你的目标。
旁注2:它可能会更改所有元邮箱的高度,但找到正确的div并将其添加到函数中也会解决这个问题,干杯。