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 |
---|---|
155 |
|
156 | function media_buttons() { |
157 | global $post_ID, $temp_ID; |
158 | $uploading_iframe_ID = (int) (0 == $post_ID ? $temp_ID : $post_ID); |
159 | $context = apply_filters('media_buttons_context', __('Add media: %s')); |
160 | $media_upload_iframe_src = "media-upload.php?post_id=$uploading_iframe_ID"; |
161 | $media_title = __('Add Media'); |
162 | $image_upload_iframe_src = apply_filters('image_upload_iframe_src', "$media_upload_iframe_src&type=image"); |
163 | $image_title = __('Add an Image'); |
164 | $video_upload_iframe_src = apply_filters('video_upload_iframe_src', "$media_upload_iframe_src&type=video"); |
165 | $video_title = __('Add Video'); |
166 | $audio_upload_iframe_src = apply_filters('audio_upload_iframe_src', "$media_upload_iframe_src&type=audio"); |
167 | $audio_title = __('Add Audio'); |
168 | $out = <<<EOF |
169 |
|
170 | <a href="{$image_upload_iframe_src}&TB_iframe=true&height=500&width=640" class="thickbox" title='$image_title'><img src='images/media-button-image.gif' alt='$image_title' /></a> |
171 | <a href="{$video_upload_iframe_src}&TB_iframe=true&height=500&width=640" class="thickbox" title='$video_title'><img src='images/media-button-video.gif' alt='$video_title' /></a> |
172 | <a href="{$audio_upload_iframe_src}&TB_iframe=true&height=500&width=640" class="thickbox" title='$audio_title'><img src='images/media-button-music.gif' alt='$audio_title' /></a> |
173 | <a href="{$media_upload_iframe_src}&TB_iframe=true&height=500&width=640" class="thickbox" title='$media_title'><img src='images/media-button-other.gif' alt='$media_title' /></a> |