WP_MS_Themes_List_Table::no_items()

In this article

Displays the message when there are no items to list.

Source

public function no_items() {
	if ( $this->has_items ) {
		_e( 'No themes found.' );
	} else {
		_e( 'No themes are currently available.' );
	}
}

User Contributed Notes

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