WP_List_Table::get_views()protectedWP 3.1.0

Gets the list of views available on this table.

The format is an associative array:

  • 'id' => 'link'

Method of the class: WP_List_Table{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_views();

Changelog

Since 3.1.0 Introduced.

WP_List_Table::get_views() code WP 6.6.2

protected function get_views() {
	return array();
}