Settings::add_to_pages_with_tabs( array $pages )
Adds The Events Calendar settings page to the pages configuration.
Contents
Parameters
- $pages
-
(array) (Required) An array containing the slug of the pages with tabs.
Return
(array) $pages The modified array containing the pages with tabs.
Source
File: src/Tribe/Admin/Settings.php
public function add_to_pages_with_tabs( $pages ) {
$pages[] = static::$settings_page_id;
return $pages;
}
Changelog
| Version | Description |
|---|---|
| 5.15.0 | Introduced. |