save_post

save_post

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action
See hook in action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('save_post') is found 3 times:

  • /wp-includes/class-wp-customize-manager.php line 3118
    3114
    3115
    3116
    3117
    3118
    3119
    3120
    3121
    3122
    3123
    /** This action is documented in wp-includes/post.php */
    do_action( "save_post_{$post->post_type}", $post->ID, $post, true );
     
    /** This action is documented in wp-includes/post.php */
    do_action( 'save_post', $post->ID, $post, true );
     
    /** This action is documented in wp-includes/post.php */
    do_action( 'wp_insert_post', $post->ID, $post, true );
     
    wp_after_insert_post( get_post( $post_id ), true, $post );
  • /wp-includes/post.php line 5060
    5056
    5057
    5058
    5059
    5060
    5061
    5062
    5063
    5064
    5065
    5066
    * @param int     $post_id Post ID.
     * @param WP_Post $post    Post object.
     * @param bool    $update  Whether this is an existing post being updated.
     */
    do_action( 'save_post', $post_id, $post, $update );
     
    /**
     * Fires once a post has been saved.
     *
     * @since 2.0.0
     *
  • /wp-includes/post.php line 5234
    5230
    5231
    5232
    5233
    5234
    5235
    5236
    5237
    5238
    5239
    5240
        /** This action is documented in wp-includes/post.php */
        do_action( "save_post_{$post->post_type}", $post->ID, $post, true );
     
        /** This action is documented in wp-includes/post.php */
        do_action( 'save_post', $post->ID, $post, true );
     
        /** This action is documented in wp-includes/post.php */
        do_action( 'wp_insert_post', $post->ID, $post, true );
     
        wp_after_insert_post( $post, true, $post_before );
    }

See this hook used in plugins: