_WP_List_Table_Compat::get_column_info() WordPress Method

The get_column_info() is a method of the WP_List_Table_Compat class and is used to get the column headers for a particular table. This can be useful when you need to know the order of the columns or the data that is contained in each column.

_WP_List_Table_Compat::get_column_info() #

Gets a list of all, hidden, and sortable columns.


Return

(array)


Top ↑

Source

File: wp-admin/includes/class-wp-list-table-compat.php

	protected function get_column_info() {
		$columns  = get_column_headers( $this->_screen );
		$hidden   = get_hidden_columns( $this->_screen );
		$sortable = array();
		$primary  = $this->get_default_primary_column_name();

		return array( $columns, $hidden, $sortable, $primary );
	}


Top ↑

Changelog

Changelog
VersionDescription
3.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.