mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-22 23:41:38 +01:00
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:
parent
fce15d1f2c
commit
91a362c574
@ -2557,3 +2557,15 @@ function print_column_headers() {
|
|||||||
_deprecated_function( __FUNCTION__, '3.1', 'WP_List_Table' );
|
_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();
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user