BP_Groups_List_Table::get_column_info()

Get an array of all the columns on the page.


Description Description


Return Return

(array) Array of column headers.


Top ↑

Source Source

File: bp-groups/classes/class-bp-groups-list-table.php

	public function get_column_info() {
		$this->_column_headers = array(
			$this->get_columns(),
			array(),
			$this->get_sortable_columns(),
			$this->get_default_primary_column_name(),
		);

		return $this->_column_headers;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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