print_column_headers() – Prints column headers for a particular screen.

You appear to be a bot. Output may be restricted

Description

Prints column headers for a particular screen.

Usage

print_column_headers( $screen, $with_id );

Parameters

$screen
( string|WP_Screen ) required – The screen hook name or screen object.
$with_id
( bool ) optional default: 1 – Whether to set the ID attribute or not.

Returns

void

Source

File name: wordpress/wp-admin/includes/list-table.php
Lines:

1 to 5 of 5
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 );
}
 

 View on GitHub View on Trac