1

我的客户进行了 wordpress 更新,并意识到管理页面编辑器在进行整体编辑时更改为真正减小的宽度:

在此处输入图像描述

由于他处理的桌子比屏幕宽,因此这对他不起作用。

有没有办法将视图扩大到可用的屏幕宽度?

谢谢

4

2 回答 2

1

是的,如 wordpress 升级到版本 5 或更高版本的屏幕截图,其中 Guttenberg 编辑器是默认的。但是,您可以将以下插件添加到其中,这将帮助您按原样获取屏幕

于 2019-01-12T09:34:27.433 回答
1

这对我有用:

<?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>';
}
于 2019-01-11T01:40:39.403 回答