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
5397       *
5398       * @since 5.6.0
5399       *
5400       * @param int          $post_id     Post ID.
5401       * @param WP_Post      $post        Post object.
5402       * @param bool         $update      Whether this is an existing post being updated.
5403       * @param null|WP_Post $post_before Null for new posts, the WP_Post object prior
5404       *                                  to the update for updated posts.
5405       */
5406      do_action( 'wp_after_insert_post', $post_id, $post, $update, $post_before );
5407 }
5408
5409 //
5410 // Comment, trackback, and pingback functions.
5411 //
5412
5413 /**
5414  * Add a URL to those already pinged.
5415  *