Tribe__Tickets__Attendee_Registration__Template::modify_archive_title( string $title )

Modify the archive title – for themes that somehow defeat our earlier hook.


Parameters

$title

(string) (Required) The archive page title.


Top ↑

Return

(string)


Top ↑

Source

File: src/Tribe/Attendee_Registration/Template.php

	public function modify_archive_title( $title ) {
		if ( $this->is_on_ar_page() ) {
			$title = $this->get_page_title();
		}

		// Return the title
		return $title;
	}

Top ↑

Changelog

Changelog
Version Description
4.10.2 Introduced.