wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
media_upload_tabs › WordPress Function
Seit2.5.0
Veraltetn/v
› media_upload_tabs ( Keine Parameter )
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Defines the default media upload tabs.
Ähnliche Funktionen: the_media_upload_tabs, media_upload_audio, media_upload_image, media_upload_header, media_upload_html_bypass
Quellcode
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 );
}