Controller::remove_filters()
Removes registered filters.
Source
File: src/Events_Pro/Block_Templates/Controller.php
public function remove_filters() {
remove_filter( 'tec_events_get_full_site_block_template_services', [ $this, 'filter_include_templates' ], 25 );
remove_filter(
'single_template_hierarchy',
[
$this,
'filter_single_template_hierarchy',
],
10
);
}
Changelog
| Version | Description |
|---|---|
| 6.3.2 | Introduced. |