mirror of
https://ghproxy.net/https://github.com/fairpm/fair-plugin.git
synced 2025-09-06 13:46:29 +08:00
27 lines
647 B
PHP
27 lines
647 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Disable the Openverse media category in the block editor.
|
||
|
*
|
||
|
* @package FAIR
|
||
|
*/
|
||
|
|
||
|
namespace FAIR\Disable_Openverse;
|
||
|
|
||
|
/**
|
||
|
* Bootstrap the module functionality.
|
||
|
*/
|
||
|
function bootstrap() {
|
||
|
add_filter( 'block_editor_settings_all', __NAMESPACE__ . '\\disable_openverse_block_editor_settings' );
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Disable the Openverse media category in the block editor.
|
||
|
*
|
||
|
* @param array $settings The block editor settings.
|
||
|
* @return array The modified block editor settings.
|
||
|
*/
|
||
|
function disable_openverse_block_editor_settings( array $settings ) : array {
|
||
|
$settings['enableOpenverseMediaCategory'] = false;
|
||
|
return $settings;
|
||
|
}
|