Deprecate get_hidden_columns(). Fixes #14651

git-svn-id: https://develop.svn.wordpress.org/trunk@15514 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu 2010-08-21 16:30:18 +00:00
parent 36d2fff18d
commit 7bbfb4b5f1
1 changed files with 12 additions and 0 deletions

View File

@ -2557,3 +2557,15 @@ function print_column_headers() {
_deprecated_function( __FUNCTION__, '3.1', 'WP_List_Table' );
}
/**
* Gets hidden column names for a particular screen.
*
* @since unknown
* @deprecated 3.1.0
* @deprecated Use WP_List_Table
*/
function get_hidden_columns() {
_deprecated_function( __FUNCTION__, '3.1', 'WP_List_Table' );
return array();
}