WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 4387 | $tabs = array( |
| 4388 | // handler action suffix => tab label |
| 4389 | 'type' => '', |
| 4390 | 'type_url' => '', |
| 4391 | 'gallery' => '', |
| 4392 | 'library' => '', |
| 4393 | ); |
| 4394 | |
| 4395 | /** This filter is documented in wp-admin/includes/media.php */ |
| 4396 | $tabs = apply_filters( 'media_upload_tabs', $tabs ); |
| 4397 | unset( $tabs['type'], $tabs['type_url'], $tabs['gallery'], $tabs['library'] ); |
| 4398 | |
| 4399 | $props = array( |
| 4400 | 'link' => get_option( 'image_default_link_type' ), // DB default is 'file'. |
| 4401 | 'align' => get_option( 'image_default_align' ), // Empty default. |
| 4402 | 'size' => get_option( 'image_default_size' ), // Empty default. |
| 4403 | ); |
| 4404 | |
| 4405 | $exts = array_merge( wp_get_audio_extensions(), wp_get_video_extensions() ); |