get_comment_statuses

Definition:
function get_comment_statuses( ) {}

Retrieve all of the WordPress supported comment statuses.
Comments have a limited set of valid status values, this provides the comment status values and descriptions.

Return values

returns:List of comment statuses.

Source code

function get_comment_statuses( ) {

	$status = array(

		'hold'		=> __('Unapproved'),

		/* translators: comment status  */

		'approve'	=> _x('Approved', 'adjective'),

		/* translators: comment status */

		'spam'		=> _x('Spam', 'adjective'),

	);



	return $status;

}

1328

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: