Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_attachment

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
3323           } else {
3324
3325                /**
3326                 * Fires once an attachment has been added.
3327                 *
3328                 * @since 2.0.0
3329                 *
3330                 * @param int $post_ID Attachment ID.
3331                 */
3332                do_action( 'add_attachment', $post_ID );
3333           }
3334
3335           return $post_ID;
3336      }
3337
3338      if ( $update ) {
3339           /**
3340            * Fires once an existing post has been updated.
3341            *