Settings::add_organizer_tab( Tribe__Settings_Tab $parent_tab )
Add the organizer subtab to the display settings page.
Contents
Parameters
- $parent_tab
-
(Tribe__Settings_Tab) (Required) The parent tab to which the organizer tab should be added.
Return
(void)
Source
File: src/Events_Pro/Linked_Posts/Organizer/Settings.php
public function add_organizer_tab( Settings_Tab $parent_tab ): void {
$parent_tab->add_child(
new Settings_Tab(
'display-organizers-tab',
esc_html__( 'Organizers', 'the-events-calendar' ),
[
'priority' => 5.05,
'fields' => $this->get_display_settings(),
]
)
);
}
Changelog
| Version | Description |
|---|---|
| 7.0.1 | Introduced. |