---
title: Filtrer le code postal du widget Local Business
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-code-postal-du-widget-local-business/"
lang: fr-FR
updated: 2020-09-14
hook_name: seopress_lb_widget_code
required_version: 4.0
---

# Filtrer le code postal du widget Local Business

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

```php
add_filter('seopress_lb_widget_code', 'sp_lb_widget_code');
function sp_lb_widget_code($html) {
	$html = __('My custom postal code', 'my-text-domain');
	return $html;
}
```

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



