Claude says I have to add this filter in order to make the font library fonts available in the drop-down menu:
add_filter( ‘generateblocks_typography_font_family_list’, function( $fonts ) {
$fonts[] = [ ‘label’ => ‘Roboto Slab’, ‘value’ => ‘Roboto Slab’ ];
$fonts[] = [ ‘label’ => ‘Poppins’, ‘value’ => ‘Poppins’ ];
return $fonts;
} );
Is that true?