1. 程式人生 > >編輯文章頁面,修改側邊欄的分類多選框的樣式。

編輯文章頁面,修改側邊欄的分類多選框的樣式。

ane admin type cat pan style stty 分類 text

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: 1000px;/* 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‘);

編輯文章頁面,修改側邊欄的分類多選框的樣式。