WC_Admin_Log_Table_List::prepare_column_headers()protectedWC 1.0

Set _column_headers property for table list

Метод класса: WC_Admin_Log_Table_List{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->prepare_column_headers();

Код WC_Admin_Log_Table_List::prepare_column_headers() WC 8.7.0

protected function prepare_column_headers() {
	$this->_column_headers = array(
		$this->get_columns(),
		array(),
		$this->get_sortable_columns(),
	);
}