get_comment_statuses(): string[]

In this article

Retrieves all of the WordPress supported comment statuses.

Description

Comments have a limited set of valid status values, this provides the comment status values and descriptions.

Return

string[] List of comment status labels keyed by status.

Source

function get_comment_statuses() {
	$status = array(
		'hold'    => __( 'Unapproved' ),
		'approve' => _x( 'Approved', 'comment status' ),
		'spam'    => _x( 'Spam', 'comment status' ),
		'trash'   => _x( 'Trash', 'comment status' ),
	);

	return $status;
}

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.