do_action( "save_post_{$post->post_type}", int $post_id, WP_Post $post, bool $update )

Fires once a post has been saved.


Description

The dynamic portion of the hook name, $post->post_type, refers to the post type slug.

Possible hook names include:

  • save_post_post
  • save_post_page

Parameters

$post_id

Post ID.

$post

Post object.

$update

Whether this is an existing post being updated.


Source

File: wp-includes/post.php

View on GitHub



Changelog

Changelog
Version Description
3.7.0 Introduced.