Controller::register_filters()

Register filters.

Contents


Source

File: src/Events/Integrations/Plugins/Elementor/Controller.php

	public function register_filters(): void {
		add_filter( 'elementor/query/query_args', [ $this, 'suppress_query_filters' ], 10, 1 );
		add_filter( 'the_content', [ $this, 'disable_blocks_on_display' ], 10 );
		add_filter( 'tec_events_allow_single_block_template', [ $this, 'filter_tec_events_allow_single_block_template' ] );
	}

Top ↑

Changelog

Changelog
Version Description
6.4.0 Introduced.