Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: media_meta

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 3 times in this file.

Line Code
1428
1429      /**
1430       * Filter the media metadata.
1431       *
1432       * @since 2.5.0
1433       *
1434       * @param string  $media_dims The HTML markup containing the media dimensions.
1435       * @param WP_Post $post       The WP_Post attachment object.
1436       */
1437      $media_dims = apply_filters( 'media_meta', $media_dims, $post );
1438
1439      $image_edit_button = '';
1440      if ( wp_attachment_is_image( $post->ID ) && wp_image_editor_supports( array( 'mime_type' => $post->post_mime_type ) ) ) {
1441           $nonce = wp_create_nonce( "image_editor-$post->ID" );
1442           $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>";
1443      }
1444
1445      $attachment_url = get_permalink( $attachment_id );
1446
 
Line Code
1653
1654      /** This filter is documented in wp-admin/includes/media.php */
1655      $form_fields = apply_filters( 'attachment_fields_to_edit', $form_fields, $post );
1656
1657      unset( $form_fields['image-size'], $form_fields['align'], $form_fields['image_alt'],
1658           $form_fields['post_title'], $form_fields['post_excerpt'], $form_fields['post_content'],
1659           $form_fields['url'], $form_fields['menu_order'], $form_fields['image_url'] );
1660
1661      /** This filter is documented in wp-admin/includes/media.php */
1662      $media_meta = apply_filters( 'media_meta', '', $post );
1663
1664      $defaults = array(
1665           'input'         => 'text',
1666           'required'      => false,
1667           'value'         => '',
1668           'extra_rows'    => array(),
1669           'show_in_edit'  => true,
1670           'show_in_modal' => true,
1671      );
 
Line Code
2814
2815      $file = get_attached_file( $post->ID );
2816      $filename = esc_html( wp_basename( $file ) );
2817
2818      $media_dims = '';
2819      $meta = wp_get_attachment_metadata( $post->ID );
2820      if ( isset( $meta['width'], $meta['height'] ) )
2821           $media_dims .= "<span id='media-dims-$post->ID'>{$meta['width']}&nbsp;&times;&nbsp;{$meta['height']}</span> ";
2822      /** This filter is documented in wp-admin/includes/media.php */
2823      $media_dims = apply_filters( 'media_meta', $media_dims, $post );
2824
2825      $att_url = wp_get_attachment_url( $post->ID );
2826 ?>
2827      <div class="misc-pub-section misc-pub-attachment">
2828           <label for="attachment_url"><?php _e( 'File URL:' ); ?></label>
2829           <input type="text" class="widefat urlfield" readonly="readonly" name="attachment_url" id="attachment_url" value="<?php echo esc_attr( $att_url ); ?>" />
2830      </div>
2831      <div class="misc-pub-section misc-pub-filename">
2832           <?php _e( 'File name:' ); ?> <strong><?php echo $filename; ?></strong>