您可以通过应用一行简单的CSS来扩展WordPress自定义区域,而无需插件。
.wp-full-overlay-sidebar {
width: 30% !important; /* The width of the customize area */
}
.wp-full-overlay.expanded {
margin-left: 30%; /* Here would be the width as same as the customize window width you set */
}
将CSS挂接到
admin_enqueue_scripts()
函数将其加载到WordPress自定义区域。下面给出了CSS文件排队示例-
add_action(\'admin_enqueue_scripts\', function() {
wp_enqueue_style(\'your-prefix-admin\', get_template_directory_uri().\'/assets/css/admin.css\');
});
注意:此代码应放入主题的
functions.php
文件您应该创建一个名为
admin.css
在主题的assets/css目录中(如果不存在,则创建目录)。
对于子主题,您应该get_stylesheet_directory_uri()
函数而不是get_template_directory_uri()
作用