WP_MS_Themes_List_Table::get_columns()publicWP 1.0

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

Хуков нет.

Возвращает

Строку[]. Array of column titles keyed by their column name.

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

$WP_MS_Themes_List_Table = new WP_MS_Themes_List_Table();
$WP_MS_Themes_List_Table->get_columns();

Код WP_MS_Themes_List_Table::get_columns() WP 6.5.2

public function get_columns() {
	$columns = array(
		'cb'          => '<input type="checkbox" />',
		'name'        => __( 'Theme' ),
		'description' => __( 'Description' ),
	);

	if ( $this->show_autoupdates ) {
		$columns['auto-updates'] = __( 'Automatic Updates' );
	}

	return $columns;
}