ActionScheduler_Abstract_ListTable::prepare_column_headersprotectedWC 1.0

Prepares the _column_headers property which is used by WP_Table_List at rendering. It merges the columns and the sortable columns.

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

Хуков нет.

Возвращает

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

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

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

Код ActionScheduler_Abstract_ListTable::prepare_column_headers() WC 9.9.3

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