do_action( "edit_post_{$post->post_type}", int $post_id , WP_Post $post )
Fires once an existing post has been updated.
Description
The dynamic portion of the hook name, $post->post_type
, refers to the post type slug.
Possible hook names include:
edit_post_post
edit_post_page
Parameters
-
$post_id
int -
Post ID.
-
$post
WP_Post -
Post object.
Source
File: wp-includes/post.php
.
View all references
do_action( "edit_post_{$post->post_type}", $post_id, $post );
Changelog
Version | Description |
---|---|
5.1.0 | Introduced. |