save_post_{$post->post_type} WordPress Action Hook

The save_post_{$post->post_type} is a Wordpress hook that is triggered when a post of the specified post type is saved. This hook can be used to perform any actions that need to be taken when a post is saved, such as saving custom fields or sending notifications.

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

Top ↑

Parameters

$post_ID

(int)Post ID.

$post

(WP_Post)Post object.

$update

(bool)Whether this is an existing post being updated.


Top ↑

Source

File: wp-includes/post.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More