diff --git a/wp-includes/deprecated.php b/wp-includes/deprecated.php index 0895e0e1b..527d126d4 100644 --- a/wp-includes/deprecated.php +++ b/wp-includes/deprecated.php @@ -2534,3 +2534,26 @@ function is_term( $term, $taxonomy = '', $parent = 0 ) { _deprecated_function( __FUNCTION__, '3.0', 'term_exists()' ); return term_exists( $term, $taxonomy, $parent ); } + +/** + * Register column headers for a particular screen. + * + * @since 2.7.0 + * @deprecated 3.1.0 + * @deprecated Use WP_List_Table + */ +function register_column_headers() { + _deprecated_function( __FUNCTION__, '3.1', 'WP_List_Table' ); +} + +/** + * Prints column headers for a particular screen. + * + * @since 2.7.0 + * @deprecated 3.1.0 + * @deprecated Use WP_List_Table + */ +function print_column_headers() { + _deprecated_function( __FUNCTION__, '3.1', 'WP_List_Table' ); +} +