古登堡删除最常用的组

时间:2019-05-03 作者:Razvan Cuceu

我正在寻找一种解决方案,从古腾堡编辑器中删除“最常用”的块组,但找不到任何块,有没有办法?

enter image description here

3 个回复
SO网友:Benjamin

将CSS添加到wp admin:

functions.php:

function admin_scripts() {
  wp_enqueue_style(\'admin-edits\', get_stylesheet_directory_uri() . \'/assets/css/admin.css\');
}

add_action(\'admin_enqueue_scripts\', \'admin_scripts\');

admin.css:

#block-editor-inserter__search-1:placeholder-shown + .editor-inserter__results .components-panel__body:first-of-type {
  display: none;
}

SO网友:Ronak Ganatra

我已经看到Benjamin 并应用了CSS,但自WordPress 5.4以来它就不起作用了,所以这里是更新后的CSS,它也将在5.4和5.4之前的所有版本中起作用。

input[id^="block-editor-inserter__search-"]:placeholder-shown+.block-editor-inserter__results .components-panel__body:first-of-type{display:none}

SO网友:kanlukasz

如果非编程方式足够了,从WP 5.5开始,您可以很容易地这样做:

  1. 只需打开More tools & options (这3个点)

enter image description here

<打开Options

enter image description here

<然后取消选中Enable the Most Used Blocks category in the block library

enter image description here

相关推荐