post_updated
The WordPress Core post updated hook.
Description
Parameters (3)
- 0. $wp_save_post_revision (string) =>
'wp_save_post_revision'
- The
wp
save post revision. - 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
1
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'post_updated', $wp_save_post_revision, $int, $int );
- The following example is for adding a hook callback.
- // define the post_updated callback
- function action_post_updated( $wp_save_post_revision, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'post_updated', 'action_post_updated', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'post_updated', 'action_post_updated', 10, 3 );
Defined (3)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'post_updated', 'wp_save_post_revision', 10, 1 );
- add_action( 'post_updated', 'wp_check_for_changed_slugs', 12, 3 );
- /wp-includes/post.php
- do_action( 'post_updated', $post_ID, $post_after, $post_before);