WP_Media_List_Table::no_items() –

You appear to be a bot. Output may be restricted

Description

Usage

WP_Media_List_Table::no_items();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-media-list-table.php
Lines:

1 to 7 of 7
  public function no_items() {
    if ( $this->is_trash ) {
      _e( 'No media files found in Trash.' );
    } else {
      _e( 'No media files found.' );
    }
  }
 

 View on GitHub View on Trac