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 2 times in this file.
Line | Code |
---|---|
1341 | /** |
1342 | * Filter the arguments used to retrieve an image for the edit image form. |
1343 | * |
1344 | * @since 3.1.0 |
1345 | * |
1346 | * @see get_media_item |
1347 | * |
1348 | * @param array $args An array of arguments. |
1349 | */ |
1350 | $r = apply_filters( 'get_media_item_args', $args ); |
1351 |
|
1352 | $toggle_on = __( 'Show' ); |
1353 | $toggle_off = __( 'Hide' ); |
1354 |
|
1355 | $filename = esc_html( wp_basename( $post->guid ) ); |
1356 | $title = esc_attr( $post->post_title ); |
1357 |
|
1358 | $post_mime_types = get_post_mime_types(); |
1359 | $keys = array_keys( wp_match_mime_types( array_keys( $post_mime_types ), $post->post_mime_type ) ); |
Line | Code |
1566 | 'errors' => null, |
1567 | 'in_modal' => false, |
1568 | ); |
1569 |
|
1570 | $user_can_edit = current_user_can( 'edit_post', $attachment_id ); |
1571 |
|
1572 | $args = wp_parse_args( $args, $default_args ); |
1573 |
|
1574 | /** This filter is documented in wp-admin/includes/media.php */ |
1575 | $args = apply_filters( 'get_media_item_args', $args ); |
1576 |
|
1577 | $form_fields = array(); |
1578 |
|
1579 | if ( $args['in_modal'] ) { |
1580 | foreach ( get_attachment_taxonomies($post) as $taxonomy ) { |
1581 | $t = (array) get_taxonomy($taxonomy); |
1582 | if ( ! $t['public'] || ! $t['show_ui'] ) |
1583 | continue; |
1584 | if ( empty($t['label']) ) |