Skip to content

Instantly share code, notes, and snippets.

@Mamaduka
Created August 10, 2021 16:19
Show Gist options
  • Save Mamaduka/e1d070591ff6f54c2678c8805eff5eee to your computer and use it in GitHub Desktop.
Save Mamaduka/e1d070591ff6f54c2678c8805eff5eee to your computer and use it in GitHub Desktop.
<?php
add_filter( 'block_type_metadata', function( $metadata ) {
if ( in_array( $metadata['name'], [ 'core/paragraph', 'core/heading'], true ) ) {
$metadata['supports']['typography']['__experimentalFontFamily'] = true;
}
return $metadata;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment