---
title: Filtrer le titre du widget Local Business
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-titre-du-widget-local-business/"
lang: fr-FR
updated: 2021-10-01
hook_name: seopress_lb_widget_title
required_version: 4.0
---

# Filtrer le titre du widget Local Business

- **Hook name:** `seopress_lb_widget_title`
- **Required version:** 4.0

```php
add_filter('seopress_lb_widget_title', 'sp_lb_widget_title');
function sp_lb_widget_title($html) {
	$html = __('My custom local business title', 'my-text-domain');
	return $html;
}
```

Source: [https://gist.github.com/wp-seopress/1a30b18eb204348b5884d0f55b74a8a5](https://gist.github.com/wp-seopress/1a30b18eb204348b5884d0f55b74a8a5)



