Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_insert_attachment_data

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
3267      if ( 'attachment' === $post_type ) {
3268           /**
3269            * Filters attachment post data before it is updated in or added to the database.
3270            *
3271            * @since 3.9.0
3272            *
3273            * @param array $data    An array of sanitized attachment post data.
3274            * @param array $postarr An array of unsanitized attachment post data.
3275            */
3276           $data = apply_filters( 'wp_insert_attachment_data', $data, $postarr );
3277      } else {
3278           /**
3279            * Filters slashed post data just before it is inserted into the database.
3280            *
3281            * @since 2.7.0
3282            *
3283            * @param array $data    An array of slashed post data.
3284            * @param array $postarr An array of sanitized, but otherwise unmodified post data.
3285            */