Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$new_status}_{$post->post_type}

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
4069       *
4070       * Therefore, if you are looking to only fire a callback when a post is first
4071       * transitioned to a status, use the {@see 'transition_post_status'} hook instead.
4072       *
4073       * @since 2.3.0
4074       *
4075       * @param int     $post_id Post ID.
4076       * @param WP_Post $post    Post object.
4077       */
4078      do_action( "{$new_status}_{$post->post_type}", $post->ID, $post );
4079 }
4080
4081 //
4082 // Comment, trackback, and pingback functions.
4083 //
4084
4085 /**
4086  * Add a URL to those already pinged.
4087  *