WP_Links_List_Table::get_default_primary_column_name() WordPress Method
The WP_Links_List_Table::get_default_primary_column_name() method is used to get the name of the default primary column for the links list table.
WP_Links_List_Table::get_default_primary_column_name() #
Get the name of the default primary column.
Return
(string) Name of the default primary column, in this case, 'name'.
Source
File: wp-admin/includes/class-wp-links-list-table.php
protected function get_default_primary_column_name() { return 'name'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |