Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_after_insert_post

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
5427       *
5428       * @since 5.6.0
5429       *
5430       * @param int          $post_id     Post ID.
5431       * @param WP_Post      $post        Post object.
5432       * @param bool         $update      Whether this is an existing post being updated.
5433       * @param null|WP_Post $post_before Null for new posts, the WP_Post object prior
5434       *                                  to the update for updated posts.
5435       */
5436      do_action( 'wp_after_insert_post', $post_id, $post, $update, $post_before );
5437 }
5438
5439 //
5440 // Comment, trackback, and pingback functions.
5441 //
5442
5443 /**
5444  * Adds a URL to those already pinged.
5445  *