Turn off Openverse images in the editor
Removes the Openverse tab from the block editor’s media inserter, so editors only pick images from your own media library.
<?php
add_filter(
'block_editor_settings_all',
static function ( $settings ) {
$settings['enableOpenverseMediaCategory'] = false;
return $settings;
}
);
In these packs
- Posts and the editor: Make the block editor calmer and give pages excerpts, tags and categories.
- Turn off more: More features you may not need: sitemaps, trackbacks, automatic updates, pattern suggestions.