Deprecate get_hidden_columns(). Fixes #14651

git-svn-id: http://svn.automattic.com/wordpress/trunk@15514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu 2010-08-21 16:30:18 +00:00
parent fce15d1f2c
commit 91a362c574
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();
}