WP_List_Table::get_columns() – Get a list of columns. The format is: ‘internal-name’ => ‘Title’

You appear to be a bot. Output may be restricted

Description

Gets a list of columns.

The format is:

  • `'internal-name' => 'Title'`

Usage

$array = WP_List_Table::get_columns();

Parameters

Returns

array

Source

File name: wordpress/wp-admin/includes/class-wp-list-table.php
Lines:

1 to 3 of 3
  public function get_columns() {
    die( 'function WP_List_Table::get_columns() must be overridden in a subclass.' );
  }
 

 View on GitHub View on Trac