Uses
| Uses | Description | 
|---|---|
| wp-includes/post.php: edit_post_{$post->post_type} | Fires once an existing post has been updated. | 
| wp-includes/post.php: pre_trash_post | Filters whether a post trashing should take place. | 
| wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. | 
| wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. | 
| wp-includes/post.php: clean_post_cache() | Will clean the post in the cache. | 
| wp-includes/post.php: wp_transition_post_status() | Fires actions related to the transitioning of a post’s status. | 
| wp-includes/post.php: edit_post | Fires once an existing post has been updated. | 
| wp-includes/post.php: save_post_{$post->post_type} | Fires once a post has been saved. | 
| wp-includes/post.php: save_post | Fires once a post has been saved. | 
| wp-includes/post.php: wp_insert_post | Fires once a post has been saved. | 
| wp-includes/post.php: wp_delete_post() | Trash or delete a post or page. | 
| wp-includes/post.php: wp_trash_post_comments() | Moves comments for a post to the Trash. | 
| wp-includes/post.php: wp_trash_post | Fires before a post is sent to the Trash. | 
| wp-includes/post.php: trashed_post | Fires after a post is sent to the Trash. | 
| wp-includes/post.php: add_post_meta() | Adds a meta field to the given post. | 
| wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. | 
| wp-includes/post.php: get_post_status() | Retrieve the post status based on the post ID. | 
| wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |