WP_Posts_List_Table::no_items
Method of the class: WP_Posts_List_Table{}
No Hooks.
Returns
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() WP Posts List Table::no items code WP 6.8.3
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;
}
}