WP_Comments_List_Table::no_items()

In this article

Source

public function no_items() {
	global $comment_status;

	if ( 'moderated' === $comment_status ) {
		_e( 'No comments awaiting moderation.' );
	} elseif ( 'trash' === $comment_status ) {
		_e( 'No comments found in Trash.' );
	} else {
		_e( 'No comments found.' );
	}
}

User Contributed Notes

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