Tribe__Tickets__Attendee_Registration__Template::modify_archive_title( string $title )
Modify the archive title – for themes that somehow defeat our earlier hook.
Contents
Parameters
- $title
-
(string) (Required) The archive page title.
Return
(string)
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;
}
Changelog
| Version | Description |
|---|---|
| 4.10.2 | Introduced. |