---
title: Filtrar el separador de horarios de apertura de negocios locales
url: "https://www.seopress.org/es/soporte/hooks/filtrar-el-separador-de-horarios-de-apertura-de-negocios-locales/"
lang: es
updated: 2025-09-24
hook_name: seopress_lb_widget_opening_hours_separator, seopress_lb_block_opening_hours_separator
required_version: 9.2
---

# Filtrar el separador de horarios de apertura de negocios 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)



