WP_Users_List_Table::no_items()publicWP 3.1.0

Outputs 'no users' message.

Method of the class: WP_Users_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Changelog

Since 3.1.0 Introduced.

WP_Users_List_Table::no_items() code WP 6.4.3

public function no_items() {
	_e( 'No users found.' );
}