Uses
Uses | Description |
---|---|
wp-admin/includes/ajax-actions.php: _wp_ajax_delete_comment_response() | Sends back current comment total and new page links if they need to be updated. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/pluggable.php: check_ajax_referer() | Verifies the Ajax request to prevent processing requests external of the blog. |
wp-includes/functions.php: wp_die() | Kills WordPress execution and displays HTML page with an error message. |
wp-includes/comment.php: wp_get_comment_status() | The status of a comment by ID. |
wp-includes/comment.php: wp_spam_comment() | Marks a comment as Spam |
wp-includes/comment.php: wp_unspam_comment() | Removes a comment from the Spam |
wp-includes/comment.php: wp_trash_comment() | Moves a comment to the Trash |
wp-includes/comment.php: wp_untrash_comment() | Removes a comment from the Trash |
wp-includes/comment.php: wp_delete_comment() | Trashes or deletes a comment. |
wp-includes/comment.php: get_comment() | Retrieves comment data given a comment ID or comment object. |