Archive | /wp-includes/comment.php RSS feed for this section

wp_trash_comment

Moves a comment to the TrashIf trash is disabled, comment is permanently deleted.

4183

Continue reading

wp_transition_comment_status

Call hooks for when a comment status transition occurs.Calls hooks for comment status transitions. If the new comment status is not the same as the previous comment status, then two hooks will be ran, the first is ‘transition_comment_status’ with new status, old status, and comment data. The next action called is ‘comment_OLDSTATUS_to_NEWSTATUS’ the NEWSTATUS is the $new_status parameter and the OLDSTATUS is $old_status parameter; it has the comment data.

4179

Continue reading

wp_set_comment_status

Sets the status of a comment.The ‘wp_set_comment_status’ action is called after the comment is handled and will only be called, if the comment status is either ‘hold’, ‘approve’, or ‘spam’. If the comment status is not in the list, then false is returned and if the status is ‘delete’, then the comment is deleted without calling the action.

4101

Continue reading