# quotes\_dlx\_block\_template

This filter can be used to change the template that is output via the block's settings.

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

{% code overflow="wrap" %}

```php
/**
 * Filter: quotes_dlx_block_template
 *
 * Set a new default template.
 *
 * @since 1.0.0
 *
 * @param string Template name (slug).
 *
 * @return string new template name (slug).
 */
$template_name = apply_filters( 'quotes_dlx_block_template', $template_name );
```

{% endcode %}
