Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: attachment_fields_to_save

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

Line Code
762                 * Filters the attachment fields to be saved.
763                 *
764                 * @since 2.5.0
765                 *
766                 * @see wp_get_attachment_metadata()
767                 *
768                 * @param array $post       An array of post data.
769                 * @param array $attachment An array of attachment metadata.
770                 */
771                $post = apply_filters( 'attachment_fields_to_save', $post, $attachment );
772
773                if ( isset( $attachment['image_alt'] ) ) {
774                     $image_alt = wp_unslash( $attachment['image_alt'] );
775
776                     if ( get_post_meta( $attachment_id, '_wp_attachment_image_alt', true ) !== $image_alt ) {
777                          $image_alt = wp_strip_all_tags( $image_alt, true );
778
779                          // update_post_meta() expects slashed.
780                          update_post_meta( $attachment_id, '_wp_attachment_image_alt', wp_slash( $image_alt ) );