View_Filters::add_recurrence_hide_to_page_reset_ignored_params( array $arguments = array(), TribeEventsViewsV2View|null $view = null )

Adds the recurrence param to the ignored params on the page reset.


Parameters

$arguments

(array) (Optional) Which arguments we are ignoring.

Default value: array()

$view

(TribeEventsViewsV2View|null) (Optional) Current view that we are filtering.

Default value: null


Top ↑

Return

(array) Array of params with the hide_subsequent_recurrences added.


Top ↑

Source

File: src/Tribe/Views/V2/View_Filters.php

	public function add_recurrence_hide_to_page_reset_ignored_params( array $arguments = [], View $view = null ) {
		$arguments[] = 'hide_subsequent_recurrences';

		return $arguments;
	}

Top ↑

Changelog

Changelog
Version Description
5.3.0 Introduced.