All_View::get_repository_args()
Overrides the base method to ensure that, to show ALL occurrences of a Recurring Event, the hide_subsequent_recurrences repository argument will always be false.
Return
(TribeEventsProViewsV2Viewsarray<string,mixed>) The filtered Repository arguments.
Source
File: src/Tribe/Views/V2/Views/All_View.php
public function get_repository_args() {
$repository_args = parent::get_repository_args();
$repository_args['hide_subsequent_recurrences'] = false;
return $repository_args;
}
Changelog
| Version | Description |
|---|---|
| 5.6.0 | Introduced. |