mirror of
https://ghproxy.net/https://github.com/fairpm/fair-plugin.git
synced 2025-09-04 14:36:29 +08:00
Signed-off-by: costdev <79332690+costdev@users.noreply.github.com> Signed-off-by: Colin Stewart <79332690+costdev@users.noreply.github.com> Co-authored-by: Andy Fragen <andy@thefragens.com>
26 lines
638 B
PHP
26 lines
638 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;
|
|
}
|