---
title: Filter Local Business widget opening hours
url: "https://www.seopress.org/support/hooks/filter-local-business-widget-opening-hours/"
lang: en-US
updated: 2021-10-01
hook_name: seopress_lb_widget_opening_hours
required_version: 4.0
---

# Filter Local Business widget opening hours

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

```php
add_filter('seopress_lb_widget_opening_hours', 'sp_lb_widget_opening_hours');
function sp_lb_widget_opening_hours($hours) {
	echo '<pre>';
	print_r($hours);
	echo '</pre>';
	return $hours;
}
```

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



