Summery Summery
Prints column headers for a particular screen.
Syntax Syntax
Parameters Parameters
- $screen
-
(Required) The screen hook name or screen object.
- $with_id
-
(Optional) Whether to set the ID attribute or not.
Default value: true
Source Source
File: wp-admin/includes/list-table.php
function print_column_headers( $screen, $with_id = true ) { $wp_list_table = new _WP_List_Table_Compat( $screen ); $wp_list_table->print_column_headers( $with_id ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |