WP_Comments_List_Table::no_items()publicWP 1.0

Method of the class: WP_Comments_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Comments_List_Table = new WP_Comments_List_Table();
$WP_Comments_List_Table->no_items();

Notes

  • Global. String. $comment_status

WP_Comments_List_Table::no_items() code WP 6.4.3

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.' );
	}
}