# quotes\_dlx\_load\_fonts

Unused. Can be used to disallow the loading of a font stylesheet.

{% hint style="info" %}
Location: `php/Blocks.php`
{% endhint %}

{% code overflow="wrap" %}

```php
/**
 * Allow or disallow loading of fonts.
 *
 * @since 1.0.0
 *
 * @param bool Whether to load the custom fonts or not.
 */
$load_fonts = apply_filters( 'quotes_dlx_load_fonts', true );
if ( $load_fonts ) {
	$theme_deps[] = 'quotes-dlx-fonts';
}
```

{% endcode %}
