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