Settings::settings_page_title( string $title )

Filter the Event Tickets Settings page title.


Parameters

$title

(string) (Required) The title of the settings page.


Top ↑

Return

(string) The modified title of the settings page..


Top ↑

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' )
		);
	}

Top ↑

Changelog

Changelog
Version Description
5.4.0 Introduced.