Filter: bricks/builder/standard_fonts
Place and customize the following filter to display a different set of web-safe fonts in the typography control.
add_filter( 'bricks/builder/standard_fonts', function( $standard_fonts ) { // Option #1: Add individual standard font $standard_fonts[] = 'Verdana';
// Option #2: Replace all standard fonts $standard_fonts = [ 'Georgia', 'Times New Roman', 'Verdana', ];
return $standard_fonts;} );Was this helpful?
A quick vote and short notes help us improve these docs faster.
Leave a note for us
Please do not include passwords, license keys, or personal data. We store submitted notes to improve the docs.
Thanks for sharing feedback. We're using it to improve these docs.