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.
This hook occurs 3 times in this file.
Line | Code |
---|---|
1659 |
|
1660 | /** |
1661 | * Filters the media metadata. |
1662 | * |
1663 | * @since 2.5.0 |
1664 | * |
1665 | * @param string $media_dims The HTML markup containing the media dimensions. |
1666 | * @param WP_Post $post The WP_Post attachment object. |
1667 | */ |
1668 | $media_dims = apply_filters( 'media_meta', $media_dims, $post ); |
1669 |
|
1670 | $image_edit_button = ''; |
1671 |
|
1672 | if ( wp_attachment_is_image( $post->ID ) && wp_image_editor_supports( array( 'mime_type' => $post->post_mime_type ) ) ) { |
1673 | $nonce = wp_create_nonce( "image_editor-$post->ID" ); |
1674 | $image_edit_button = "<input type='button' id='imgedit-open-btn-$post->ID' onclick='imageEdit.open( $post->ID, \"$nonce\" )' class='button' value='" . esc_attr__( 'Edit Image' ) . "' /> <span class='spinner'></span>"; |
1675 | } |
1676 |
|
1677 | $attachment_url = get_permalink( $attachment_id ); |
Line | Code |
1931 | $form_fields['post_title'], |
1932 | $form_fields['post_excerpt'], |
1933 | $form_fields['post_content'], |
1934 | $form_fields['url'], |
1935 | $form_fields['menu_order'], |
1936 | $form_fields['image_url'] |
1937 | ); |
1938 |
|
1939 | /** This filter is documented in wp-admin/includes/media.php */ |
1940 | $media_meta = apply_filters( 'media_meta', '', $post ); |
1941 |
|
1942 | $defaults = array( |
1943 | 'input' => 'text', |
1944 | 'required' => false, |
1945 | 'value' => '', |
1946 | 'extra_rows' => array(), |
1947 | 'show_in_edit' => true, |
1948 | 'show_in_modal' => true, |
1949 | ); |
Line | Code |
3280 | $filename = esc_html( wp_basename( $file ) ); |
3281 |
|
3282 | $media_dims = ''; |
3283 | $meta = wp_get_attachment_metadata( $attachment_id ); |
3284 |
|
3285 | if ( isset( $meta['width'], $meta['height'] ) ) { |
3286 | $media_dims .= "<span id='media-dims-$attachment_id'>{$meta['width']} × {$meta['height']}</span> "; |
3287 | } |
3288 | /** This filter is documented in wp-admin/includes/media.php */ |
3289 | $media_dims = apply_filters( 'media_meta', $media_dims, $post ); |
3290 |
|
3291 | $att_url = wp_get_attachment_url( $attachment_id ); |
3292 |
|
3293 | $author = new WP_User( $post->post_author ); |
3294 |
|
3295 | $uploaded_by_name = __( '(no author)' ); |
3296 | $uploaded_by_link = ''; |
3297 |
|
3298 | if ( $author->exists() ) { |