mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
213 B
Text
6 lines
213 B
Text
function disable_font_library_ui( $editor_settings ) {
|
|
$editor_settings['fontLibraryEnabled'] = false;
|
|
return $editor_settings;
|
|
}
|
|
|
|
add_filter( 'block_editor_settings_all', 'disable_font_library_ui' );
|