media_upload_tabs()WP 2.5.0

Defines the default media upload tabs.

Хуки из функции

Возвращает

Строку[]. Default tabs.

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

media_upload_tabs();

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

С версии 2.5.0 Введена.

Код media_upload_tabs() WP 6.5.2

function media_upload_tabs() {
	$_default_tabs = array(
		'type'     => __( 'From Computer' ), // Handler action suffix => tab text.
		'type_url' => __( 'From URL' ),
		'gallery'  => __( 'Gallery' ),
		'library'  => __( 'Media Library' ),
	);

	/**
	 * Filters the available tabs in the legacy (pre-3.5.0) media popup.
	 *
	 * @since 2.5.0
	 *
	 * @param string[] $_default_tabs An array of media tabs.
	 */
	return apply_filters( 'media_upload_tabs', $_default_tabs );
}