wp_get_comment_status( int|WP_Comment $comment_id )
Retrieves the status of a comment by comment ID.
Parameters
- $comment_id
-
(Required) Comment ID or WP_Comment object
Return
(string|false) Status might be 'trash', 'approved', 'unapproved', 'spam'. False on failure.
Source
File: wp-includes/comment.php
function wp_get_comment_status($comment_id) {
$comment = get_comment($comment_id);
if ( !$comment )
return false;
$approved = $comment->comment_approved;
if ( $approved == null )
return false;
elseif ( $approved == '1' )
return 'approved';
elseif ( $approved == '0' )
return 'unapproved';
elseif ( $approved == 'spam' )
return 'spam';
elseif ( $approved == 'trash' )
return 'trash';
else
return false;
}
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |