WP_MS_Themes_List_Table::get_primary_column_name() – Gets the name of the primary column.

You appear to be a bot. Output may be restricted

Description

Gets the name of the primary column.

Usage

$string = WP_MS_Themes_List_Table::get_primary_column_name();

Parameters

Returns

string Unalterable name of the primary column name, in this case, 'name'.

Source

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

1 to 3 of 3
  protected function get_primary_column_name() {
    return 'name';
  }
 

 View on GitHub View on Trac