Hooks::filter_view_venue_header_title( string $header_title, array $view )
Filters header title for the Venue view.
Contents
See also
- TribeEventsViewsV2View::get_header_title(): for where this code is applying.
Parameters
- $view
-
(array) (Required) The instance of the view being rendered.
- $header_title
-
(string) (Required) The header title for the view.
Return
(string) The filtered header title.
Source
File: src/Tribe/Views/V2/Hooks.php
public function filter_view_venue_header_title( $header_title, $view ) {
return $this->container->make( Venue_View::class )->setup_header_title( $header_title, $view );
}
Changelog
| Version | Description |
|---|---|
| 6.2.0 | Introduced. |