Hooks::filter_events_rewrite_rules_custom( TribeEventsProViewsV2array $rewrite_rules )
Filters The Events Calendar custom rewrite rules to fix the order and relative position of some and play nice with Views v2 canonical URL needs.
Contents
Parameters
- $rewrite_rules
-
(<span class="TribeEventsProViewsV2array">TribeEventsProViewsV2array) (Required) An array of The Events Calendar custom rewrite rules, in the same format used by WordPress: a map of each rule regular expression to the corresponding query string.
Return
(TribeEventsProViewsV2array<string,string>) The input map of The Events Calendar rewrite rules, updated to satisfy the needs of Views v2 canonical URL building.
Source
File: src/Tribe/Views/V2/Hooks.php
public function filter_events_rewrite_rules_custom( $rewrite_rules ) {
if ( ! is_array( $rewrite_rules ) ) {
return $rewrite_rules;
}
return $this->container->make( Rewrite::class )->filter_events_rewrite_rules_custom( $rewrite_rules );
}
Changelog
| Version | Description |
|---|---|
| 5.0.3 | Introduced. |