WP_Comments_List_Table::get_default_primary_column_name() WordPress Method
The WP_Comments_List_Table::get_default_primary_column_name() method is used to get the default primary column name for the comments list table.
WP_Comments_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, 'comment'.
Source
File: wp-admin/includes/class-wp-comments-list-table.php
protected function get_default_primary_column_name() { return 'comment'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |