---
title: Filtrer le séparateur des heures d&rsquo;ouverture des entreprises locales
url: "https://www.seopress.org/fr/support/hooks/filtrer-les-heures-douverture-des-entreprises-locales/"
lang: fr-FR
updated: 2025-09-24
hook_name: seopress_lb_widget_opening_hours_separator, seopress_lb_block_opening_hours_separator
required_version: 9.2
---

# Filtrer le séparateur des heures d&rsquo;ouverture des entreprises locales

- **Hook name:** `seopress_lb_widget_opening_hours_separator, seopress_lb_block_opening_hours_separator`
- **Required version:** 9.2

```php
LB Widget:
add_filter('seopress_lb_widget_opening_hours_separator', 'sp_lb_widget_opening_hours_separator');
function sp_lb_widget_opening_hours_separator($separator) {
    // apply your custom logic here
    return $separator;
};

LB Block:
add_filter('seopress_lb_block_opening_hours_separator', 'sp_lb_block_opening_hours_separator');
function sp_lb_block_opening_hours_separator($separator) {
    // apply your custom logic here
    return $separator;
};
```

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



