WP_Media_List_Table::no_items()

In this article

Displays a message when no media items are found.

Source

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

Changelog

VersionDescription
3.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.