Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_media_item_args

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 2 times in this file.

Line Code
1597      /**
1598       * Filters the arguments used to retrieve an image for the edit image form.
1599       *
1600       * @since 3.1.0
1601       *
1602       * @see get_media_item
1603       *
1604       * @param array $parsed_args An array of arguments.
1605       */
1606      $parsed_args = apply_filters( 'get_media_item_args', $parsed_args );
1607
1608      $toggle_on  = __( 'Show' );
1609      $toggle_off = __( 'Hide' );
1610
1611      $file     = get_attached_file( $post->ID );
1612      $filename = esc_html( wp_basename( $file ) );
1613      $title    = esc_attr( $post->post_title );
1614
1615      $post_mime_types = get_post_mime_types();
 
Line Code
1865           'errors'   => null,
1866           'in_modal' => false,
1867      );
1868
1869      $user_can_edit = current_user_can( 'edit_post', $attachment_id );
1870
1871      $args = wp_parse_args( $args, $default_args );
1872
1873      /** This filter is documented in wp-admin/includes/media.php */
1874      $args = apply_filters( 'get_media_item_args', $args );
1875
1876      $form_fields = array();
1877
1878      if ( $args['in_modal'] ) {
1879           foreach ( get_attachment_taxonomies( $post ) as $taxonomy ) {
1880                $t = (array) get_taxonomy( $taxonomy );
1881
1882                if ( ! $t['public'] || ! $t['show_ui'] ) {
1883                     continue;