我不知道如何将摘录字段移动到主块编辑器区域,但通过添加一些管理CSS规则,可以在悬停时扩展编辑帖子侧栏,从而获得更宽、更可用的摘录字段。
当您将鼠标悬停在侧边栏上时,下面的解决方案将侧边栏扩大了300%。
- Create an Admin CSS 子主题文件夹中名为
admin-style.css
- Add custom CSS 添加到新文件
admin-style.css
/*
For larger viewports, widen the edit post sidebar when hovered over
*/
@media screen and (min-width: 782px) {
.edit-post-layout.is-sidebar-opened .edit-post-sidebar:hover {
width: 700px;
max-width: 50vw;
transition: all ease .7s;
}
}
- Enqueue admin style 通过将此代码放入
functions.php
添加到functions.php
// Enqueue custom admin style sheet
function load_custom_wp_admin_style() {
wp_register_style( \'custom_wp_admin_css\', get_stylesheet_directory_uri() . \'/admin-style.css\' );
wp_enqueue_style( \'custom_wp_admin_css\' );
}
add_action( \'admin_enqueue_scripts\', \'load_custom_wp_admin_style\' );
通过使用admin_enqueue_scripts
, 此文件仅在管理端加载,不会影响网站的公共可见前端。