Page::filter_admin_title( string $admin_title, string $title )
Modify the Admin Title for the calendar manager page.
Contents
Parameters
- $admin_title
-
(string) (Required) Administration title.
- $title
-
(string) (Required) Original title.
Return
(string) Modified page of the Calendar Manager.
Source
File: src/Tribe/Admin/Manager/Page.php
public function filter_admin_title( $admin_title, $title ) {
if ( ! $this->is_current_screen() ) {
return $admin_title;
}
return $this->get_page_title() . ' ' . $admin_title;
}
Changelog
| Version | Description |
|---|---|
| 5.9.0 | Introduced. |