Wordpress管理页面编辑宽度
Wordpress admin page editing width
我的客户更新了 wordpress,发现管理页面编辑器在进行 bloc 编辑时宽度变小了:
因为他处理的 table 比屏幕还宽,所以这对他不起作用。
有没有办法将视图扩大到可用的屏幕宽度?
谢谢
这对我有用:
<?php
/**
* Plugin Name: Block Editor Full Width
* Description: Fix the block editor width to full size
*/
add_action('admin_head', 'block_editor_full_width');
function block_editor_full_width() {
echo '<style>
.wp-block {
width: 100% !important;
max-width: none !important;}
.editor-styles-wrapper .editor-writing-flow {
max-width: none !important;
margin: 0 !important;}
}
</style>';
}
是的,截图显示wordpress升级到5或以上版本,默认使用Guttenberg编辑器。但是,您可以在下面添加 plugin,这将帮助您获得原样的屏幕
我的客户更新了 wordpress,发现管理页面编辑器在进行 bloc 编辑时宽度变小了:
因为他处理的 table 比屏幕还宽,所以这对他不起作用。
有没有办法将视图扩大到可用的屏幕宽度?
谢谢
这对我有用:
<?php
/**
* Plugin Name: Block Editor Full Width
* Description: Fix the block editor width to full size
*/
add_action('admin_head', 'block_editor_full_width');
function block_editor_full_width() {
echo '<style>
.wp-block {
width: 100% !important;
max-width: none !important;}
.editor-styles-wrapper .editor-writing-flow {
max-width: none !important;
margin: 0 !important;}
}
</style>';
}
是的,截图显示wordpress升级到5或以上版本,默认使用Guttenberg编辑器。但是,您可以在下面添加 plugin,这将帮助您获得原样的屏幕