Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_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

This hook occurs 2 times in this file.

Line Code
5007
5008           /**
5009            * Fires once an existing post has been updated.
5010            *
5011            * @since 1.2.0
5012            *
5013            * @param int     $post_id Post ID.
5014            * @param WP_Post $post    Post object.
5015            */
5016           do_action( 'edit_post', $post_id, $post );
5017
5018           $post_after = get_post( $post_id );
5019
5020           /**
5021            * Fires once an existing post has been updated.
5022            *
5023            * @since 3.0.0
5024            *
5025            * @param int     $post_id      Post ID.
 
Line Code
5219
5220      $old_status        = $post->post_status;
5221      $post->post_status = 'publish';
5222      wp_transition_post_status( 'publish', $old_status, $post );
5223
5224      /** This action is documented in wp-includes/post.php */
5225      do_action( "edit_post_{$post->post_type}", $post->ID, $post );
5226
5227      /** This action is documented in wp-includes/post.php */
5228      do_action( 'edit_post', $post->ID, $post );
5229
5230      /** This action is documented in wp-includes/post.php */
5231      do_action( "save_post_{$post->post_type}", $post->ID, $post, true );
5232
5233      /** This action is documented in wp-includes/post.php */
5234      do_action( 'save_post', $post->ID, $post, true );
5235
5236      /** This action is documented in wp-includes/post.php */
5237      do_action( 'wp_insert_post', $post->ID, $post, true );