Settings::add_to_pages_with_tabs( array $pages )

Adds the Event Tickets settings page to the pages configuration.


Parameters

$pages

(array) (Required) An array containing the slug of the pages with tabs.


Top ↑

Return

(array) $pages The modified array containing the pages with tabs.


Top ↑

Source

File: src/Tribe/Admin/Settings.php

	public function add_to_pages_with_tabs( $pages ) {
		$pages[] = static::$settings_page_id;

		return $pages;
	}

Top ↑

Changelog

Changelog
Version Description
5.4.0 Introduced.