Settings::settings_page_title( string $title )
Filter the Event Tickets Settings page title.
Contents
Parameters
- $title
-
(string) (Required) The title of the settings page.
Return
(string) The modified title of the settings page..
Source
File: src/Tribe/Admin/Settings.php
public function settings_page_title( $title ) {
if ( ! $this->is_tec_tickets_settings() ) {
return $title;
}
return sprintf(
// Translators: %s is the `Tickets` in plural.
__( '%s Settings', 'event-tickets' ),
tribe_get_ticket_label_plural( 'tec_tickets_settings_title' )
);
}
Changelog
| Version | Description |
|---|---|
| 5.4.0 | Introduced. |