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 |
---|---|
508 | $post['post_excerpt'] = $attachment['post_excerpt']; |
509 | if ( isset($attachment['menu_order']) ) |
510 | $post['menu_order'] = $attachment['menu_order']; |
511 |
|
512 | if ( isset($send_id) && $attachment_id == $send_id ) { |
513 | if ( isset($attachment['post_parent']) ) |
514 | $post['post_parent'] = $attachment['post_parent']; |
515 | } |
516 |
|
517 | $post = apply_filters('attachment_fields_to_save', $post, $attachment); |
518 |
|
519 | if ( isset($attachment['image_alt']) ) { |
520 | $image_alt = wp_unslash( $attachment['image_alt'] ); |
521 | if ( $image_alt != get_post_meta($attachment_id, '_wp_attachment_image_alt', true) ) { |
522 | $image_alt = wp_strip_all_tags( $image_alt, true ); |
523 | // update_meta expects slashed |
524 | update_post_meta( $attachment_id, '_wp_attachment_image_alt', wp_slash( $image_alt ) ); |
525 | } |
526 | } |