WP_Screen::get_help_tabs()publicWP 3.4.0

Gets the help tabs registered for the screen.

Метод класса: WP_Screen{}

Хуков нет.

Возвращает

Массив. Help tabs with arguments.

Использование

$WP_Screen = new WP_Screen();
$WP_Screen->get_help_tabs();

Список изменений

С версии 3.4.0 Введена.
С версии 4.4.0 Help tabs are ordered by their priority.

Код WP_Screen::get_help_tabs() WP 6.5.2

public function get_help_tabs() {
	$help_tabs = $this->_help_tabs;

	$priorities = array();
	foreach ( $help_tabs as $help_tab ) {
		if ( isset( $priorities[ $help_tab['priority'] ] ) ) {
			$priorities[ $help_tab['priority'] ][] = $help_tab;
		} else {
			$priorities[ $help_tab['priority'] ] = array( $help_tab );
		}
	}

	ksort( $priorities );

	$sorted = array();
	foreach ( $priorities as $list ) {
		foreach ( $list as $tab ) {
			$sorted[ $tab['id'] ] = $tab;
		}
	}

	return $sorted;
}