media_upload_tabs() – Defines the default media upload tabs

You appear to be a bot. Output may be restricted

Description

Defines the default media upload tabs.

Usage

$string[] = media_upload_tabs();

Parameters

Returns

string[] Default tabs.

Source

File name: wordpress/wp-admin/includes/media.php
Lines:

1 to 17 of 17
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 );
}
 

 View on GitHub View on Trac