Disable the font library UI in WordPress 6.5.
Snippet Type
Execute on Child Sites
Snippet
function disable_font_library_ui( $editor_settings ) {
$editor_settings['fontLibraryEnabled'] = false;
return $editor_settings;
}
add_filter( 'block_editor_settings_all', 'disable_font_library_ui' );