Uses
Uses | Description |
---|---|
wp-includes/post.php: edit_post_{$post->post_type} | Fires once an existing post has been updated. |
wp-includes/comment.php: pre_wp_update_comment_count_now | Filters a post’s comment count before it is updated in the database. |
wp-includes/cache.php: wp_cache_delete() | Removes the cache contents matching key and group. |
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: edit_post | Fires once an existing post has been updated. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/wp-db.php: wpdb::get_var() | Retrieves one variable from the database. |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
wp-includes/comment.php: wp_update_comment_count | Fires immediately after a post’s comment count is updated in the database. |