WP_Posts_List_Table::no_items()publicWP 1.0

Method of the class: WP_Posts_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

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

WP_Posts_List_Table::no_items() code WP 6.5.2

public function no_items() {
	if ( isset( $_REQUEST['post_status'] ) && 'trash' === $_REQUEST['post_status'] ) {
		echo get_post_type_object( $this->screen->post_type )->labels->not_found_in_trash;
	} else {
		echo get_post_type_object( $this->screen->post_type )->labels->not_found;
	}
}