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.
Parameters
- $post_ID
-
Post ID.
- $post
-
Post object.
- $update
-
Whether this is an existing post being updated or not.
Source
File: wp-includes/post.php
Changelog
Version | Description |
---|---|
WP-3.7.0 | Introduced. |