这很明显,因为WordPress post通常有6列,而您有13列<然而,问题是标题栏被压缩了。在最新版本中,列宽如下所示:
The Check box column: 2.2米~3%
The Title column: 灵活,因为其宽度为默认值(自动)(通常为40%)The Author column: 10%
The Categories column: 15%
The Tags column: 15%
The Comments column: 5.5em~6.7%
The Date column: 10%
Solution
添加标题宽度并指定宽度,但以em为单位。
.column-title {
width: 15em;
}
调整此值以获得所需的外观。
如何应用此代码function.php
或者您可以在自定义插件中实现这一点
这里我们有一个小样式脚本,如果您有更多样式要添加到管理后端,请使用自定义css文件添加它
For small amount of script.
function adjust_admin_style() {
echo \'<style>
.column-title {
width: 15em;
}
</style>\';
}
add_action(\'admin_head\', \'adjust_admin_style\');
Implement styles in large scales function prefix_admin_style() {
wp_enqueue_style(\'admin-styles\', get_template_directory_uri().\'/yourstyle.css\');
}
add_action(\'admin_enqueue_scripts\', \'prefix_admin_style\');