WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 2946 | |
| 2947 | if ( $update ) { |
| 2948 | do_action('edit_post', $post_ID, $post); |
| 2949 | $post_after = get_post($post_ID); |
| 2950 | do_action( 'post_updated', $post_ID, $post_after, $post_before); |
| 2951 | } |
| 2952 | |
| 2953 | do_action( "save_post_{$post->post_type}", $post_ID, $post, $update ); |
| 2954 | do_action( 'save_post', $post_ID, $post, $update ); |
| 2955 | do_action( 'wp_insert_post', $post_ID, $post, $update ); |
| 2956 | |
| 2957 | return $post_ID; |
| 2958 | } |
| 2959 | |
| 2960 | /** |
| 2961 | * Update a post with new post data. |
| 2962 | * |
| 2963 | * The date does not have to be set for drafts. You can set the date and it will |
| 2964 | * not be overridden. |
| Line | Code |
| 3039 | clean_post_cache( $post->ID ); |
| 3040 | |
| 3041 | $old_status = $post->post_status; |
| 3042 | $post->post_status = 'publish'; |
| 3043 | wp_transition_post_status( 'publish', $old_status, $post ); |
| 3044 | |
| 3045 | do_action( 'edit_post', $post->ID, $post ); |
| 3046 | do_action( "save_post_{$post->post_type}", $post->ID, $post, true ); |
| 3047 | do_action( 'save_post', $post->ID, $post, true ); |
| 3048 | do_action( 'wp_insert_post', $post->ID, $post, true ); |
| 3049 | } |
| 3050 | |
| 3051 | /** |
| 3052 | * Publish future post and make sure post ID has future post status. |
| 3053 | * |
| 3054 | * Invoked by cron 'publish_future_post' event. This safeguard prevents cron |
| 3055 | * from publishing drafts, etc. |
| 3056 | * |
| 3057 | * @since 2.5.0 |