Add a doc block to `WP_List_Table::get_primary_column()`.

Fixes #33854.


git-svn-id: https://develop.svn.wordpress.org/trunk@34166 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2015-09-15 03:34:44 +00:00
parent 8df7bd75b6
commit 1a537a4f6d
1 changed files with 8 additions and 0 deletions

View File

@ -888,6 +888,14 @@ class WP_List_Table {
return $column;
}
/**
* Public wrapper for `->get_default_primary_column_name()`
*
* @since 4.4.0
* @access public
*
* @return string Name of the default primary column.
*/
public function get_primary_column() {
return $this->get_primary_column_name();
}