wp_after_insert_post( int|WP_Post $post, bool $update, null|WP_Post $post_before )

Fires actions after a post, its terms and meta data has been saved.

Parameters

$postint|WP_Postrequired
The post ID or object that has been saved.
$updateboolrequired
Whether this is an existing post being updated.
$post_beforenull|WP_Postrequired
Null for new posts, the WP_Post object prior to the update for updated posts.

Source

function wp_after_insert_post( $post, $update, $post_before ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return;
	}

	$post_id = $post->ID;

	/**
	 * Fires once a post, its terms and meta data has been saved.
	 *
	 * @since 5.6.0
	 *
	 * @param int          $post_id     Post ID.
	 * @param WP_Post      $post        Post object.
	 * @param bool         $update      Whether this is an existing post being updated.
	 * @param null|WP_Post $post_before Null for new posts, the WP_Post object prior
	 *                                  to the update for updated posts.
	 */
	do_action( 'wp_after_insert_post', $post_id, $post, $update, $post_before );
}

Hooks

do_action( ‘wp_after_insert_post’, int $post_id, WP_Post $post, bool $update, null|WP_Post $post_before )

Fires once a post, its terms and meta data has been saved.

Changelog

VersionDescription
5.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.