Uses
Uses | Description |
---|---|
wp-includes/comment.php: wp_set_comment_status | Fires immediately before transitioning a comment’s status from one to another in the database. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/wp-db.php: wpdb::get_col() | Retrieves one column from the database. |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
wp-includes/wp-db.php: wpdb::delete() | Deletes a row in the table. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
wp-includes/comment.php: clean_comment_cache() | Removes a comment from the object cache. |
wp-includes/comment.php: wp_update_comment_count() | Updates the comment count for post(s). |
wp-includes/comment.php: wp_get_comment_status() | The status of a comment by ID. |
wp-includes/comment.php: wp_transition_comment_status() | Call hooks for when a comment status transition occurs. |
wp-includes/comment.php: wp_trash_comment() | Moves a comment to the Trash |
wp-includes/comment.php: delete_comment | Fires immediately before a comment is deleted from the database. |
wp-includes/comment.php: deleted_comment | Fires immediately after a comment is deleted from the database. |
wp-includes/comment.php: get_comment() | Retrieves comment data given a comment ID or comment object. |
wp-includes/meta.php: delete_metadata_by_mid() | Deletes metadata by meta ID. |