WP_List_Table::no_items()publicWP 3.1.0

Message to be displayed when there are no items

Method of the class: WP_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Changelog

Since 3.1.0 Introduced.

WP_List_Table::no_items() code WP 6.5.2

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