# quotes\_dlx\_can\_preload\_fonts

This filter is a true/false flag and lets the plugin know if it can preload fonts or not.

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

{% code overflow="wrap" %}

```php
/**
 * Whether to preload fonts or not.
 *
 * @since 1.0.0
 *
 * @param bool true to preload, false to not.
 */
$can_preload = apply_filters( 'quotes_dlx_can_preload_fonts', true );
if ( ! $can_preload ) {
	return;
}
```

{% endcode %}
